Skip to content

Commit

Permalink
Fix comparison syntax in tet counting logic
Browse files Browse the repository at this point in the history
Nightly test still not properly comparing the number of tests correctly,
this time due to a mistake in logic.
  • Loading branch information
pvandyken committed Jul 9, 2024
1 parent a36cd70 commit f7d0a44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: |
echo "NUM=$(jq 'keys | length' .test_durations)" >> "$GITHUB_OUTPUT"
- name: Test with pytest
if: ${{ steps.count.outputs.NUM }} != ${{ steps.timed-count.outputs.NUM }}
if: ${{ steps.count.outputs.NUM != steps.timed-count.outputs.NUM }}
env:
HYPOTHESIS_PROFILE: pr
run: >-
Expand Down

0 comments on commit f7d0a44

Please sign in to comment.