diff options
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/django.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm index 0e85860176..a6ef52870e 100644 --- a/gnu/packages/django.scm +++ b/gnu/packages/django.scm @@ -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 |