diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-03-22 12:20:18 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-03-22 12:33:28 +0100 |
commit | 54262c543553a023c8835d706c2c1063cf20c079 (patch) | |
tree | 10bb437b8e1f73d3040ec2b095cd9fc0a4345c0a /gnu | |
parent | 71dbf592c49e31b2f5e235278942b98f4ba99e72 (diff) | |
download | guix-54262c543553a023c8835d706c2c1063cf20c079.tar guix-54262c543553a023c8835d706c2c1063cf20c079.tar.gz |
gnu: python-pysam: Run tests in parallel.
* gnu/packages/bioinformatics.scm (python-pysam)[arguments]: Run nose tests in
parallel.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 51f0e0c0b0..97380fc032 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -1460,7 +1460,9 @@ multiple sequence alignments.") (setenv "HOME" "/tmp") (and (zero? (system* "make" "-C" "pysam_data")) (zero? (system* "make" "-C" "cbcf_data")) - (zero? (system* "nosetests" "-v"))))))))) + (zero? (system* "nosetests" "-v" + "--processes" + (number->string (parallel-job-count))))))))))) (propagated-inputs `(("htslib" ,htslib))) ; Included from installed header files. (inputs |