gnu: python-fixtures: Fix test suite.
* gnu/packages/python.scm (python-fixtures, python2-fixtures): Replace 'check' with custom phase. [native-inputs]: Add python-mock.
This commit is contained in:
parent
fb08c4fedc
commit
f6c1ef1804
|
@ -2068,10 +2068,18 @@ from git information.
|
||||||
(base32
|
(base32
|
||||||
"0djxvdwm8s60dbfn7bhf40x6g818p3b3mlwijm1c3bqg7msn271y"))))
|
"0djxvdwm8s60dbfn7bhf40x6g818p3b3mlwijm1c3bqg7msn271y"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(replace 'check
|
||||||
|
(lambda _
|
||||||
|
(zero? (system* "python" "-m" "testtools.run"
|
||||||
|
"fixtures.test_suite")))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-six" ,python-six)))
|
`(("python-six" ,python-six)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-pbr-minimal" ,python-pbr-minimal)
|
`(("python-mock" ,python-mock)
|
||||||
|
("python-pbr-minimal" ,python-pbr-minimal)
|
||||||
("python-testtools" ,python-testtools)))
|
("python-testtools" ,python-testtools)))
|
||||||
(home-page "https://launchpad.net/python-fixtures")
|
(home-page "https://launchpad.net/python-fixtures")
|
||||||
(synopsis "Python test fixture library")
|
(synopsis "Python test fixture library")
|
||||||
|
|
Loading…
Reference in New Issue