Skip to content

Commit

Permalink
Merge pull request #171 from asmeurer/sysmon
Browse files Browse the repository at this point in the history
Enable sys.monitoring coverage for Python 3.12
  • Loading branch information
asmeurer authored Feb 15, 2024
2 parents 3c29c71 + a8cad6c commit 369331c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12-dev']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
# https://numpy.org/neps/nep-0029-deprecation_policy.html
numpy-version: ['1.22', 'latest', 'dev']
exclude:
- python-version: '3.12-dev'
- python-version: '3.12'
numpy-version: '1.22'
fail-fast: false
steps:
Expand All @@ -29,6 +29,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
Expand Down

0 comments on commit 369331c

Please sign in to comment.