File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ jobs:
103103 steps :
104104 - name : Check all jobs succeeded
105105 run : |
106- results=" ${{ toJSON(needs) }}"
106+ results=' ${{ toJSON(needs) }}'
107107 if echo "$results" | jq -r '.[] | .result' | grep -v success; then
108108 echo "Some jobs failed"
109109 exit 1
Original file line number Diff line number Diff line change 9393
9494 - name : Set up and run contract tests with pytest
9595 run : |
96+ if [[ "${{ matrix.python-version }}" == "3.13" ]]; then
97+ echo "Intentionally failing Python 3.13 to test gate job"
98+ exit 1
99+ fi
96100 bash scripts/set-up-contract-tests.sh
97101 pip install pytest
98102 pytest contract-tests/tests
@@ -169,7 +173,7 @@ jobs:
169173 steps :
170174 - name : Check all jobs succeeded
171175 run : |
172- results=" ${{ toJSON(needs) }}"
176+ results=' ${{ toJSON(needs) }}'
173177 if echo "$results" | jq -r '.[] | .result' | grep -v success; then
174178 echo "Some jobs failed"
175179 exit 1
You can’t perform that action at this time.
0 commit comments