Skip to content

Commit

Permalink
add mypy check in the lint section, make the 'test' rule depending on…
Browse files Browse the repository at this point in the history
… the 'lint' rule
  • Loading branch information
Stanley Kudrow committed Jul 21, 2024
1 parent f7acfaf commit 351dd73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ format:

lint:
python -m flake8 $(PKG)
python -m mypy -p $(PKG)
python -m ufmt check $(PKG)

test:
test: lint
python -m coverage run -m $(PKG).tests
python -m coverage report
python -m mypy -p $(PKG)

html: .venv README.md docs/*
source .venv/bin/activate && sphinx-build -b html docs html
Expand Down

0 comments on commit 351dd73

Please sign in to comment.