Skip to content

Commit

Permalink
Github workflow: don't run unit tests in parallel.
Browse files Browse the repository at this point in the history
  • Loading branch information
ropable committed Aug 17, 2023
1 parent a952fae commit 7db4c17
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,5 @@ jobs:
run: |
source .venv/bin/activate
python manage.py collectstatic
python manage.py test --noinput --failfast --parallel 4 --verbosity 0 --settings prs2.settings-test
# NOTE: we can't run tests in parallel, because setup() may break DB constraints.
python manage.py test --noinput --failfast --verbosity 0 --settings prs2.settings-test

0 comments on commit 7db4c17

Please sign in to comment.