Skip to content

Commit

Permalink
Add a couple rules to Makefile
Browse files Browse the repository at this point in the history
mypy reflects what is in CI; quicktest is a "fast" test command which
bails out faster than running the full test suite and waiting for all
the results
  • Loading branch information
charles-cooper committed Jul 19, 2021
1 parent bb0030b commit e7a3b3b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ dev-init:
test:
pytest

# run pytest but bail out on first error. useful for dev workflow
quicktest:
python setup.py test --addopts -x

mypy:
tox -e mypy

lint:
tox -e lint

Expand Down

0 comments on commit e7a3b3b

Please sign in to comment.