Skip to content

Commit 75574a2

Browse files
committed
Fix CI condition syntax for PTY test
The condition needs to be wrapped in ${{ }} for proper evaluation.
1 parent 50cc2d0 commit 75574a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
- name: Run integration tests (without secrets)
118118
run: nox -vs integration -p ${{ matrix.python-version }} -- -m "not require_secrets"
119119
- name: Run PTY integration test (Python 3.14 only, no xdist)
120-
if: matrix.python-version == '3.14' && startsWith(matrix.os, 'ubuntu')
120+
if: ${{ matrix.python-version == '3.14' && startsWith(matrix.os, 'ubuntu') }}
121121
run: |
122122
source .nox/integration-${{ matrix.python-version }}/bin/activate
123123
pytest test/integration/test_help.py::test_help_with_tty -v --sut=$(which b2v4)

0 commit comments

Comments
 (0)