diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-10-03 19:24:00 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-10-04 08:54:55 +0200 |
commit | 92a312dc86a3e75e465ef94edc1a742a12424be8 (patch) | |
tree | ca19e050b0f9e65d33e880faf7be7a34a10f46d8 /gnu/packages/python.scm | |
parent | ced12a7bff314eb173d292448713d6081fe8f21a (diff) | |
download | guix-92a312dc86a3e75e465ef94edc1a742a12424be8.tar guix-92a312dc86a3e75e465ef94edc1a742a12424be8.tar.gz |
gnu: python-pathlib: Disable tests.
* gnu/packages/python.scm (python-pathlib)[arguments]: Disable tests.
Diffstat (limited to 'gnu/packages/python.scm')
-rw-r--r-- | gnu/packages/python.scm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 90dd1b7d4d..cf86c71970 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -8799,11 +8799,9 @@ library.") (base32 "17zajiw4mjbkkv6ahp3xf025qglkj0805m9s41c45zryzj6p2h39")))) (build-system python-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda _ (zero? (system* "python" "./test_pathlib.py"))))))) + ;; The tests depend on the internal "test" module, which does not provide + ;; a stable interface. + (arguments `(#:tests? #f)) (home-page "https://pathlib.readthedocs.org/") (synopsis "Object-oriented file system paths") (description "Pathlib offers a set of classes to handle file system paths. |