Skip to content

Commit

Permalink
using mypy for type checking. no need for this
Browse files Browse the repository at this point in the history
  • Loading branch information
matin committed Sep 27, 2023
1 parent b265702 commit ddf72b8
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,6 @@ lint: .pdm
codespell: .pre-commit
pre-commit run codespell --all-files

.PHONY: typecheck ## Perform type-checking
typecheck: .pre-commit .pdm
pre-commit run typecheck --all-files

.PHONY: test ## Run all tests, skipping the type-checker integration tests
test: .pdm
pdm run coverage run -m pytest -v --durations=10
Expand All @@ -62,7 +58,7 @@ publish: .pdm
twine upload dist/*

.PHONY: all ## Run the standard set of checks performed in CI
all: lint typecheck codespell testcov
all: lint codespell testcov

.PHONY: clean ## Clear local caches and build artifacts
clean:
Expand Down

0 comments on commit ddf72b8

Please sign in to comment.