mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: python2-dendropy: Disable failing test.
* gnu/packages/bioinformatics.scm (python2-dendropy)[arguments]: Disable failing test.
This commit is contained in:
parent
21c837405a
commit
617c478506
1 changed files with 15 additions and 1 deletions
|
@ -2063,7 +2063,21 @@ (define-public python-dendropy
|
|||
(license license:bsd-3)))
|
||||
|
||||
(define-public python2-dendropy
|
||||
(package-with-python2 python-dendropy))
|
||||
(let ((base (package-with-python2 python-dendropy)))
|
||||
(package
|
||||
(inherit base)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'remove-failing-test
|
||||
(lambda _
|
||||
;; This test fails when the full test suite is run, as documented
|
||||
;; at https://github.com/jeetsukumaran/DendroPy/issues/74
|
||||
(substitute* "tests/test_dataio_nexml_reader_tree_list.py"
|
||||
(("test_collection_comments_and_annotations")
|
||||
"do_not_test_collection_comments_and_annotations"))
|
||||
#t)))
|
||||
,@(package-arguments base))))))
|
||||
|
||||
(define-public python-py2bit
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue