Skip to content

Commit

Permalink
DEBUG: Print test names in CI so we actually know where we fail (face…
Browse files Browse the repository at this point in the history
…palm)
  • Loading branch information
reuterbal committed Sep 29, 2023
1 parent 0ebe160 commit e0005ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Run Loki tests [FP and non frontend-specific]
run: |
source loki-activate
pytest --cov=./loki --cov-report=xml tests -k "not OMNI and not OFP"
pytest --cov=./loki --cov-report=xml tests -k "not OMNI and not OFP" -v
- name: Upload loki coverage report to Codecov
uses: codecov/codecov-action@v3
Expand All @@ -67,7 +67,7 @@ jobs:
- name: Run Loki tests [OMNI]
run: |
source loki-activate
pytest --cov=./loki --cov-report=xml tests -k "OMNI"
pytest --cov=./loki --cov-report=xml tests -k "OMNI" -v
- name: Upload loki coverage report to Codecov
uses: codecov/codecov-action@v3
Expand All @@ -78,7 +78,7 @@ jobs:
- name: Run Loki tests [OFP]
run: |
source loki-activate
pytest --cov=./loki --cov-report=xml tests -k "OFP"
pytest --cov=./loki --cov-report=xml tests -k "OFP" -v
- name: Upload loki coverage report to Codecov
uses: codecov/codecov-action@v3
Expand Down

0 comments on commit e0005ad

Please sign in to comment.