Compare commits

...

1 Commits

Author SHA1 Message Date
Kenneth Kehl
9a64c65c49 run pytest with -vv 2025-06-09 13:40:42 -07:00

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