From fc5b8ed163c91bac5a76d44f3ab9063389198c29 Mon Sep 17 00:00:00 2001 From: Peter Van Dyken Date: Tue, 9 Jul 2024 15:53:27 -0400 Subject: [PATCH] Fix comparison syntax in tet counting logic Nightly test still not properly comparing the number of tests correctly, this time due to a mistake in logic. --- .github/workflows/nightly.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 9e0e1920..b0862ad7 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -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: >-