diff options
author | Marius Bakke <mbakke@fastmail.com> | 2017-02-24 20:27:47 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2017-02-24 20:41:12 +0100 |
commit | ec867b86a0575d049922e074312b36dfb9d71868 (patch) | |
tree | 96e1003cdda371e93886dab5f5f2089f15c3a97f /gnu | |
parent | 42945fb58c4652943a036c99f9bcc59fab61909b (diff) | |
download | guix-ec867b86a0575d049922e074312b36dfb9d71868.tar guix-ec867b86a0575d049922e074312b36dfb9d71868.tar.gz |
gnu: python2-oslotest: Disable tests.
* gnu/packages/openstack.scm(python2-oslotest)[arguments]: New field.
(python-oslotest)[properties]: Delay it.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/openstack.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm index 381480b786..8130097c83 100644 --- a/gnu/packages/openstack.scm +++ b/gnu/packages/openstack.scm @@ -662,10 +662,16 @@ from the OpenStack project.") (description "The Oslo Test framework provides common fixtures, support for debugging, and better support for mocking results.") + (properties `((python2-variant . ,(delay python2-oslotest)))) (license asl2.0))) (define-public python2-oslotest - (package-with-python2 python-oslotest)) + (package (inherit (package-with-python2 + (strip-python2-variant python-oslotest))) + (arguments + `(#:python ,python-2 + ;; FIXME: 'subunit.run discover: error: no such option: --list' + #:tests? #f)))) (define-public python-oslo.utils (package |