Skip to content

Commit

Permalink
Merge pull request #5102 from systeminit/fix/api-test-adjustment
Browse files Browse the repository at this point in the history
fixup: API tests failure methods
  • Loading branch information
johnrwatson authored Dec 10, 2024
2 parents 730ca7d + be6b53c commit b0ca65b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
runs-on: ubuntu-latest
needs: cypress-tests
environment: ${{ inputs.environment }}
if: ${{ failure() }} && github.ref == 'refs/heads/main' }}
if: ${{ failure() && github.ref == 'refs/heads/main' }}
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-api-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
# Check the exit code
if [ -z "$exit_code" ]; then
echo "Deno task succeeded [ or the orchestration failed for a totally non-valid reason ]!"
break
exit 0
fi
n=$((n+1))
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
runs-on: ubuntu-latest
needs: api-test
environment: ${{ inputs.environment }}
if: ${{ failure() }} && github.ref == 'refs/heads/main' }}
if: ${{ failure() && github.ref == 'refs/heads/main' }}
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
Expand Down

0 comments on commit b0ca65b

Please sign in to comment.