Skip to content

Commit

Permalink
Revert Makefile and actions
Browse files Browse the repository at this point in the history
  • Loading branch information
yanghua committed Sep 9, 2024
1 parent b54e8d2 commit cd40223
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 49 deletions.
32 changes: 0 additions & 32 deletions .github/workflows/compatibilitytest.yml

This file was deleted.

29 changes: 12 additions & 17 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,17 @@ help: ## Show the help.
@echo "Usage: make <target>"
@echo ""
@echo "Targets:"
@echo "help: ## Show the help."
@echo "show: ## Show the current environment."
@echo "install: ## Install the project in dev mode."
@echo "fmt: ## Format code using black & isort."
@echo "lint: ## Run pep8, black, mypy linters."
@echo "test: lint ## Run tests and generate coverage report."
@echo "test_compatibility: ## Run compatibility tests."
@echo "watch: ## Run tests on every change."
@echo "clean: ## Clean unused files."
@echo "release: ## Create a new tag for release."
@echo "docs: ## Build the documentation."
@echo "release_wheel: ## Release wheel for python client."
@echo "help: ## Show the help."
@echo "show: ## Show the current environment."
@echo "install: ## Install the project in dev mode."
@echo "fmt: ## Format code using black & isort."
@echo "lint: ## Run pep8, black, mypy linters."
@echo "test: lint ## Run tests and generate coverage report."
@echo "watch: ## Run tests on every change."
@echo "clean: ## Clean unused files."
@echo "release: ## Create a new tag for release."
@echo "docs: ## Build the documentation."
@echo "release_wheel: ## Release wheel for python client."

.PHONY: show
show: ## Show the current environment.
Expand Down Expand Up @@ -48,11 +47,7 @@ lint: ## Run pep8, black, mypy linters.

.PHONY: test
test: ## Run tests and generate coverage report.
$(ENV_PREFIX)pytest -vv -s --cov-config .coveragerc --cov=tosfs -l --tb=short --maxfail=1 ${TEST_DIR} --ignore=${TEST_DIR}/test_fsspec.py

.PHONY: test_compatibility
test_compatibility: ## Run compatibility tests.
$(ENV_PREFIX)pytest -vv -s -l --tb=short --maxfail=1 ${TEST_DIR} ${TEST_DIR}/test_fsspec.py
$(ENV_PREFIX)pytest -vv -s --cov-config .coveragerc --cov=tosfs -l --tb=short --maxfail=1 ${TEST_DIR}

.PHONY: watch
watch: ## Run tests on every change.
Expand Down

0 comments on commit cd40223

Please sign in to comment.