Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
szszszsz committed Oct 4, 2023
1 parent ba37353 commit f000e31
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,15 @@ secrets-test:

REPORT=report.html
secrets-test-report:
./venv/bin/pytest -v pynitrokey/test_secrets_app.py --durations=0 -o log_cli=false -o log_cli_level=debug -W ignore::DeprecationWarning --template=html1/index.html --report $(REPORT) --junitxml=report-junit.xml
./venv/bin/pytest -v pynitrokey/test_secrets_app.py --durations=0 -o log_cli=false -o log_cli_level=debug -W ignore::DeprecationWarning --template=html1/index.html --report $(REPORT)
@echo "Report written to $(REPORT)"
xdg-open $(REPORT)


REPORT=report.html
secrets-test-report-CI:
./venv/bin/pytest -v pynitrokey/test_secrets_app.py --durations=0 -o log_cli_level=debug -W ignore::DeprecationWarning --template=html1/index.html --report $(REPORT) --junitxml=report-junit.xml -m "not slow" $(TESTPARAM)
@echo "Report written to $(REPORT)"


CORPUS_PATH=$(shell mktemp -d)
secrets-test-generate-corpus:
Expand Down

0 comments on commit f000e31

Please sign in to comment.