Skip to content

Commit

Permalink
test: run the slow tests too
Browse files Browse the repository at this point in the history
  • Loading branch information
beckermr committed Jan 29, 2025
1 parent ba64136 commit 8cf495b
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/python_package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,15 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
inlcude:
- python-version: "3.10"
run-slow: ""
- python-version: "3.11"
run-slow: ""
- python-version: "3.12"
run-slow: ""
- python-version: "3.12"
run-slow: "--run_slow"

steps:
- uses: actions/checkout@v4
Expand All @@ -41,4 +49,4 @@ jobs:
- name: Test with pytest
run: |
git submodule update --init --recursive
pytest -v --durations=0
pytest -v --durations=0 ${{ matrix.run-slow }}

0 comments on commit 8cf495b

Please sign in to comment.