Skip to content
This repository has been archived by the owner on Sep 25, 2024. It is now read-only.

Commit

Permalink
some more cleanup in the makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
falkowich committed Jul 22, 2023
1 parent bd54d1f commit be2fb61
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,23 @@ check:
@echo "Running bandit..."
@poetry run bandit --configfile pyproject.toml -r .


pyment:
poetry run pyment .
@echo "Running pyment..."
@poetry run pyment .

pytest:
@echo "Running pytest..."
@poetry run pytest

cov:
@echo "Running pytest html coverage..."
@poetry run pytest test/test_ise.py --cov="." --cov-report=html
@echo "Running pytest xml coverage..."
@poetry run pytest test/test_ise.py --cov="." --cov-report=xml

codecov:
@echo "Uploading coverage to codecov.."
@codecov -t $(token)

all: format check

0 comments on commit be2fb61

Please sign in to comment.