summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm9
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 5432cb31b69..1945a534252 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -10077,8 +10077,9 @@ regular expressions.")
(build-system pyproject-build-system)
(arguments
(list #:test-flags
- ;; Tests requiring a display.
- #~(list "-k" (string-append
+ #~(list "--numprocesses" (number->string (parallel-job-count))
+ ;; Tests requiring a display.
+ "-k" (string-append
"not " (string-join
(list "test_pformat"
"test_pformat_old_windows"
@@ -10087,7 +10088,9 @@ regular expressions.")
"test_persist")
" and not "))
;; Connection refused to some local FTP server.
- "--ignore=tests/test_feedexport.py")
+ "--ignore=tests/test_feedexport.py"
+ ;; Skip documentation testing.
+ "--ignore=docs")
#:phases
#~(modify-phases %standard-phases
(add-before 'check 'prepare-test-environment