Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable sys.monitoring coverage for Python 3.12 #171

Merged
merged 9 commits into from
Feb 15, 2024
Prev Previous commit
Next Next commit
Only set COVERAGE_CORE in Python 3.12
asmeurer committed Feb 12, 2024
commit 1c37b1dd2bee62ecc7a9a615da843cde9f9bcf90
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ jobs:
numpy-version: '1.22'
fail-fast: false
env:
COVERAGE_CORE: sysmon # Enable experimental faster sys.monitoring coverage for Python 3.12
COVERAGE_CORE: sysmon #
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
@@ -31,6 +31,10 @@ jobs:
else
python -m pip install --upgrade numpy==${{ matrix.numpy-version }}.*
fi
# 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
- name: Run Tests
run: |
set -x