gnu: python2-dendropy: Disable failing test.

* gnu/packages/bioinformatics.scm (python2-dendropy)[arguments]: Disable
failing test.
This commit is contained in:
Ben Woodcroft 2018-10-21 22:31:56 +10:00
parent 21c837405a
commit 617c478506
No known key found for this signature in database
GPG key ID: 2A6AD9F4AAC20DF6

View file

@ -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