Commit 6502a7773199ef28dab0e122e8197a4fe7ff65e8
1 parent
bc9c9460
Fail fast in unittests
Save computing time by failing immediately if any test fails. If we return early from one VM, the others are stopped, as well, so this saves lots of parallel time.
Showing
1 changed file
with
1 additions
and
1 deletions
.github/workflows/unittests.yml
| @@ -25,4 +25,4 @@ jobs: | @@ -25,4 +25,4 @@ jobs: | ||
| 25 | python -m pip install --upgrade pip | 25 | python -m pip install --upgrade pip |
| 26 | pip install -r requirements.txt | 26 | pip install -r requirements.txt |
| 27 | - name: Run unittests | 27 | - name: Run unittests |
| 28 | - run: python -m unittest discover | ||
| 29 | \ No newline at end of file | 28 | \ No newline at end of file |
| 29 | + run: python -m unittest discover -f | ||
| 30 | \ No newline at end of file | 30 | \ No newline at end of file |