run pytest with -vv

This commit is contained in:
Kenneth Kehl
2025-06-09 13:40:42 -07:00
parent 31c58e0be7
commit 9a64c65c49

View File

@@ -47,7 +47,7 @@ jobs:
- name: Run js tests
run: npm test
- name: Run py tests with coverage
run: poetry run coverage run --omit=*/notifications_utils/* -m pytest --maxfail=10 --ignore=tests/end_to_end tests/
run: poetry run coverage run --omit=*/notifications_utils/* -m pytest -vv --maxfail=10 --ignore=tests/end_to_end tests/
- name: Check coverage threshold
run: poetry run coverage report --fail-under=90