Skip to content

Commit

Permalink
Fixes bug in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
klpanagi committed Feb 15, 2024
1 parent 91e4d64 commit 288fa8c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,11 @@ lint: ## check style with flake8
test: ## run tests quickly with the default Python
coverage run -m unittest discover

cov:
test ## check code coverage quickly with the default Python
cov: test ## check code coverage quickly with the default Python
coverage report -m
coverage xml

cov_html:
test
cov_html: test
html

diff: ## Calculate diff
Expand Down

0 comments on commit 288fa8c

Please sign in to comment.