gnu: python-pysam: Run tests in parallel.
* gnu/packages/bioinformatics.scm (python-pysam)[arguments]: Run nose tests in parallel.
This commit is contained in:
parent
71dbf592c4
commit
54262c5435
|
@ -1460,7 +1460,9 @@ multiple sequence alignments.")
|
||||||
(setenv "HOME" "/tmp")
|
(setenv "HOME" "/tmp")
|
||||||
(and (zero? (system* "make" "-C" "pysam_data"))
|
(and (zero? (system* "make" "-C" "pysam_data"))
|
||||||
(zero? (system* "make" "-C" "cbcf_data"))
|
(zero? (system* "make" "-C" "cbcf_data"))
|
||||||
(zero? (system* "nosetests" "-v")))))))))
|
(zero? (system* "nosetests" "-v"
|
||||||
|
"--processes"
|
||||||
|
(number->string (parallel-job-count)))))))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("htslib" ,htslib))) ; Included from installed header files.
|
`(("htslib" ,htslib))) ; Included from installed header files.
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Loading…
Reference in New Issue