Skip to content

Commit 2f8227b

Browse files
add flag to run tutorials with pytest in CI workflows
1 parent ae9cab1 commit 2f8227b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/python.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
cd dist
3333
pip install -v pygambit*.tar.gz
3434
- name: Run tests
35-
run: pytest
35+
run: pytest --run-tutorials
3636

3737
macos-13:
3838
runs-on: macos-13
@@ -57,7 +57,7 @@ jobs:
5757
run: |
5858
python -m pip install -v .
5959
- name: Run tests
60-
run: pytest
60+
run: pytest --run-tutorials
6161

6262
macos-14:
6363
runs-on: macos-14
@@ -82,7 +82,7 @@ jobs:
8282
run: |
8383
python -m pip install -v .
8484
- name: Run tests
85-
run: pytest
85+
run: pytest --run-tutorials
8686

8787
windows:
8888
runs-on: windows-latest
@@ -107,4 +107,4 @@ jobs:
107107
run: |
108108
python -m pip install -v .
109109
- name: Run tests
110-
run: pytest
110+
run: pytest --run-tutorials

0 commit comments

Comments
 (0)