diff options
author | Frederick Muriuki Muriithi | 2025-06-12 16:03:33 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-06-12 16:03:33 -0500 |
commit | 3d5ac586c0c9dd7e894ceb2f79b6c4275a1a8c37 (patch) | |
tree | eeb70471afbae9d0df5844da8daaa3273fd05019 | |
parent | 88b37f5612f1ab33f757b981aed951800cce8644 (diff) | |
download | guix-bioinformatics-3d5ac586c0c9dd7e894ceb2f79b6c4275a1a8c37.tar.gz |
gn-uploader: Speed up tests.
-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 |