Skip to content

Commit

Permalink
Makefile: add coverage target
Browse files Browse the repository at this point in the history
  • Loading branch information
ekalinin committed Jun 4, 2024
1 parent 231431e commit 5d0a9d7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,12 @@ tests: test1 test2 test3 test4 test7 test8 test9 test10 clean
ut: env-dev
@. ${DEV_TEST_ENV}/bin/activate && tox -e py39

coverage: env-dev
@. ${DEV_TEST_ENV}/bin/activate && \
coverage run -p -m pytest && \
coverage report -m && \
coverage html

contributors:
@echo "Nodeenv is written and maintained by Eugene Kalinin." > AUTHORS
@echo "" >> AUTHORS
Expand Down

0 comments on commit 5d0a9d7

Please sign in to comment.