Skip to content

Commit e8f109c

Browse files
committed
test
1 parent bb61b57 commit e8f109c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

.github/workflows/pr-build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,10 @@ jobs:
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

0 commit comments

Comments
 (0)