Skip to content

Commit

Permalink
make integration test run even if unit tests failed
Browse files Browse the repository at this point in the history
  • Loading branch information
bunchofstring committed Nov 10, 2024
1 parent 94096f7 commit d08937b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: |
pytest -vv --durations=0 -s -m unit
- name: Run integration tests
if: always()
if: steps.prepare.outcome == 'success' && always()
run: |
echo "Output [${{steps.prepare.outcome}}]"
echo "Output [${{steps.prepare.output}}]"
Expand Down

0 comments on commit d08937b

Please sign in to comment.