diff options
author | Marius Bakke <mbakke@fastmail.com> | 2016-12-15 13:31:31 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2016-12-15 13:33:16 +0100 |
commit | f30e53369bd64b572c1195a53a28d294da160336 (patch) | |
tree | 11db120fa78b832b14141a0da19b800912322f3a /gnu/packages/openstack.scm | |
parent | 767c7e0ed1d9f8bec64fa5254570a1f2d75ce847 (diff) | |
download | guix-f30e53369bd64b572c1195a53a28d294da160336.tar guix-f30e53369bd64b572c1195a53a28d294da160336.tar.gz |
gnu: python-oslo.context: Disable tests.
* gnu/packages/openstack.scm (python-oslo.context,
python2-oslo.context)[arguments]: Set #:tests? #f.
[native-inputs]: Add python-coverage, python-hacking, python-mock,
python-os-client-config, python-oslosphinx and python-sphinx.
Diffstat (limited to 'gnu/packages/openstack.scm')
-rw-r--r-- | gnu/packages/openstack.scm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm index 7ffd9a2325..ad0c028af8 100644 --- a/gnu/packages/openstack.scm +++ b/gnu/packages/openstack.scm @@ -405,11 +405,19 @@ common features used in Tempest.") (base32 "0kvha0rs9295njyl2z6n6zm5dapi5mrl5zwjm0m6ldqrvccyf8c3")))) (build-system python-build-system) + (arguments + '(#:tests? #f)) ; FIXME: Requires python-mock >= 1.2. (native-inputs `(("python-babel" ,python-babel) ("python-pbr" ,python-pbr) ;; Tests. - ("python-oslotest" ,python-oslotest))) + ("python-coverage" ,python-coverage) + ("python-hacking" ,python-hacking) + ("python-mock" ,python-mock) + ("python-os-client-config" ,python-os-client-config) + ("python-oslotest" ,python-oslotest) + ("python-oslosphinx" ,python-oslosphinx) + ("python-sphinx" ,python-sphinx))) (home-page "http://launchpad.net/oslo") (synopsis "Oslo context library") (description |