[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/04: gnu: python-vobject: Disable the test suite.
From: |
Leo Famulari |
Subject: |
02/04: gnu: python-vobject: Disable the test suite. |
Date: |
Mon, 17 Oct 2016 17:56:47 +0000 (UTC) |
lfam pushed a commit to branch core-updates
in repository guix.
commit a9871b7b523eefba58645b20c88a2499119ca48e
Author: Leo Famulari <address@hidden>
Date: Sun Oct 16 13:05:30 2016 -0400
gnu: python-vobject: Disable the test suite.
The tests were silently skipped with Python 3.4. With Python 3.5, this
caused
the python-vobject build to fail.
* gnu/packages/python.scm (python-vobject, python2-vobject)[arguments]:
Disable
the tests.
---
gnu/packages/python.scm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 8d2195c..7938f74 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -8742,6 +8742,9 @@ introspection of @code{zope.interface} instances in
code.")
(base32
"1qfnwlx8qwkgr6nf5wvl6ff1r3kll53dh3z6nyp173nmlhhhqccb"))))
(build-system python-build-system)
+ (arguments
+ '(;; The test suite relies on some non-portable Windows interfaces.
+ #:tests? #f))
(inputs
`(("python-dateutil-2" ,python-dateutil-2)
("python-pyicu" ,python-pyicu)))