diff options
-rw-r--r-- | gn/packages/genenetwork.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gn/packages/genenetwork.scm b/gn/packages/genenetwork.scm index 6434ae8..e6fe58b 100644 --- a/gn/packages/genenetwork.scm +++ b/gn/packages/genenetwork.scm @@ -492,12 +492,13 @@ storage.") (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? - (invoke "pytest" "-m" "unit_test"))))))) + (invoke "pytest" "-m" "unit_test" "-n" "auto"))))))) (native-inputs (list python-mypy python-pylint python-pytest - python-hypothesis)) + python-hypothesis + python-pytest-xdist)) (propagated-inputs (list gn-libs gunicorn |