gnu: python-six: Really enable tests.

* gnu/packages/python.scm (python-six)[arguments]: Override 'check' phase.
This commit is contained in:
Marius Bakke 2017-07-30 20:01:26 +02:00
parent 220b0ac38e
commit 8dd339e5a6
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 6 additions and 0 deletions

View File

@ -1178,6 +1178,12 @@ password storage.")
(base32 (base32
"0snmb8xffb3vsma0z67i0h0w2g2dy0p3gsgh9gi4i0kgc5l8spqh")))) "0snmb8xffb3vsma0z67i0h0w2g2dy0p3gsgh9gi4i0kgc5l8spqh"))))
(build-system python-build-system) (build-system python-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda _
(zero? (system* "py.test" "-v")))))))
(native-inputs (native-inputs
`(("python-py" ,python-py) `(("python-py" ,python-py)
("python-pytest" ,python-pytest))) ("python-pytest" ,python-pytest)))