mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
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
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue