mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-23 02:36:40 +01:00
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:
parent
85725446d6
commit
1c21ecff8c
1 changed files with 3 additions and 1 deletions
|
@ -70,7 +70,9 @@ (define-public python-django-4.2
|
||||||
(list
|
(list
|
||||||
;; By default tests run in parallel, which may cause various race
|
;; By default tests run in parallel, which may cause various race
|
||||||
;; conditions. Run sequentially for consistent results.
|
;; conditions. Run sequentially for consistent results.
|
||||||
"--parallel=1")
|
"--parallel=1"
|
||||||
|
;; The test suite fails as soon as a single test fails.
|
||||||
|
"--failfast")
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-before 'check 'pre-check
|
(add-before 'check 'pre-check
|
||||||
|
|
Loading…
Reference in a new issue