|
52 | 52 | if: ${{ always() }}
|
53 | 53 | run: |
|
54 | 54 | source .venv/bin/activate
|
55 |
| - cd src && pytest -n auto -m "not ciSkip" |
| 55 | + cd src && pytest -n auto -m "not ciSkip" -rs |
56 | 56 | - name: Run C/C++ Tests
|
57 | 57 | if: ${{ always() }}
|
58 | 58 | working-directory: ./dist3
|
|
85 | 85 | - name: "Run Python Tests"
|
86 | 86 | run: |
|
87 | 87 | source .venv/bin/activate
|
88 |
| - cd src && pytest -n auto -m "not ciSkip" |
| 88 | + cd src && pytest -n auto -m "not ciSkip" -rs |
89 | 89 |
|
90 | 90 | - name: "Run C/C++ Tests"
|
91 | 91 | working-directory: ./dist3
|
@@ -121,7 +121,7 @@ jobs:
|
121 | 121 | - name: "Run Python Tests"
|
122 | 122 | run: |
|
123 | 123 | source .venv/bin/activate
|
124 |
| - cd src && pytest -n auto -m "not ciSkip" |
| 124 | + cd src && pytest -n auto -m "not ciSkip" -rs --fail-on-skip |
125 | 125 |
|
126 | 126 | - name: "Run C/C++ Tests"
|
127 | 127 | working-directory: ./dist3
|
@@ -156,7 +156,7 @@ jobs:
|
156 | 156 | - name: "Run Python Tests"
|
157 | 157 | run: |
|
158 | 158 | source .venv/bin/activate
|
159 |
| - cd src && pytest -n auto -m "not ciSkip" |
| 159 | + cd src && pytest -n auto -m "not ciSkip" -rs |
160 | 160 |
|
161 | 161 |
|
162 | 162 | build-windows:
|
@@ -206,7 +206,7 @@ jobs:
|
206 | 206 | Set-ItemProperty -Path 'Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment' -Name MPLBACKEND -Value ${MPLBACKEND}
|
207 | 207 | venv\Scripts\activate
|
208 | 208 | cd src
|
209 |
| - pytest -n auto -m "not ciSkip" |
| 209 | + pytest -n auto -m "not ciSkip" -rs --fail-on-skip |
210 | 210 | if(($LastExitCode -ne 0) -and ($LastExitCode -ne 5)) {exit 1}
|
211 | 211 | - name: "C/C++ Tests"
|
212 | 212 | if: ${{ always() }}
|
@@ -249,7 +249,7 @@ jobs:
|
249 | 249 | run: |
|
250 | 250 | source .venv/bin/activate
|
251 | 251 | cd src
|
252 |
| - pytest -n auto -m "not ciSkip" |
| 252 | + pytest -n auto -m "not ciSkip" -rs --fail-on-skip |
253 | 253 | if: ${{ always() }}
|
254 | 254 | - name: "Run C/C++ Tests"
|
255 | 255 | working-directory: ./dist3
|
@@ -295,6 +295,6 @@ jobs:
|
295 | 295 | run: |
|
296 | 296 | source .venv/bin/activate
|
297 | 297 | cd src
|
298 |
| - pytest -n auto -m "not ciSkip" |
| 298 | + pytest -n auto -m "not ciSkip" -rs |
299 | 299 |
|
300 | 300 | if: ${{ always() }}
|
0 commit comments