Skip to content

Commit

Permalink
Fix workflow syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
asmeurer committed Sep 26, 2024
1 parent 227aa32 commit faca8af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
# will work with Cython, or trace coverage will be faster again.
- name: Set CYTHON_COVERAGE=1
run: echo "CYTHON_COVERAGE=1" >> $GITHUB_ENV
if: matrix.python-version != 3.12 && matrix.python-version != 3.13-dev
if: matrix.python-version != '3.12' && matrix.python-version != '3.13-dev'
- name: Disable Coverage Plugin
run: sed -i '/plugins = Cython.Coverage/d' .coveragerc
if: matrix.python-version == 3.12 || matrix.python-version == 3.13-dev
if: matrix.python-version == '3.12' || matrix.python-version == '3.13-dev'
- name: In-place build
run: |
python setup.py clean
Expand All @@ -62,7 +62,7 @@ jobs:
# Enable experimental faster sys.monitoring coverage for Python 3.12
- name: Set COVERAGE_CORE=sysmon
run: echo "COVERAGE_CORE=sysmon" >> $GITHUB_ENV
if: matrix.python-version == 3.12 || matrix.python-version == 3.13-dev
if: matrix.python-version == '3.12' || matrix.python-version == '3.13-dev'
- name: Run Tests
run: |
set -x
Expand Down

0 comments on commit faca8af

Please sign in to comment.