Skip to content

Commit

Permalink
F7
Browse files Browse the repository at this point in the history
  • Loading branch information
cdce8p committed Oct 14, 2024
1 parent 7e4ac4b commit 2b8886b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
arch: x64
os: windows-latest
toxenv: py38
color: false
no_color: true
tox_extra_args: "-n 0 mypy/test/testpythoneval.py::PythonEvaluationSuite::pythoneval.test::testDataclassReplace"
- name: Test suite with py39-ubuntu
python: '3.9'
Expand Down Expand Up @@ -141,9 +141,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: |
echo "matrix.color: ${{ matrix.color }}"
echo "matrix.color != 'false': ${{ !matrix.color }}"
echo "matrix.color != 'false' && 1 || 0: ${{ !matrix.color && 1 || '0' }}"
echo "matrix.no_color: ${{ matrix.no_color }}"
echo "!matrix.no_color': ${{ !matrix.no_color }}"
echo "!matrix.no_color && 1 || 0: ${{ !matrix.no_color && 1 || 0 }}"
- name: Debug build
if: ${{ matrix.debug_build }}
Expand Down

0 comments on commit 2b8886b

Please sign in to comment.