gnu: python-django-4.2: Add --failfast to test-flags.

* gnu/packages/django.scm (python-django-4.2): Add --failfast to test-flags.

Signed-off-by: jgart <jgart@dismail.de>
This commit is contained in:
Nicolas Graves 2023-09-24 12:25:48 +02:00 committed by jgart
parent 85725446d6
commit 1c21ecff8c
No known key found for this signature in database
GPG Key ID: A52AA2B477B6DD35

View File

@ -70,7 +70,9 @@
(list
;; By default tests run in parallel, which may cause various race
;; conditions. Run sequentially for consistent results.
"--parallel=1")
"--parallel=1"
;; The test suite fails as soon as a single test fails.
"--failfast")
#:phases
(modify-phases %standard-phases
(add-before 'check 'pre-check