diff options
author | Leo Famulari <leo@famulari.name> | 2018-01-16 15:27:09 -0800 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2018-01-16 16:18:11 -0800 |
commit | aebd91bb9f9896c245535e6da5b0f06618596a29 (patch) | |
tree | 52d29659e4d76af509daa0eb69952aee39d94a24 /gnu | |
parent | a4f393b71f1bdd4d532d629a370e13cae81d06af (diff) | |
download | guix-aebd91bb9f9896c245535e6da5b0f06618596a29.tar.gz |
gnu: python-consul: Skip the test phase.
* gnu/packages/python.scm (python-consul, python2-consul)[arguments]: Set #:tests? #f.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 99e5bd9e0b..0489b157d2 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -9373,8 +9373,8 @@ interface for programs.") (base32 "0rfyxcy4cr3x848vhx876ifalxd5ghq6l5x813m49h4vq2d4jiq8")))) (build-system python-build-system) - (native-inputs - `(("python-pytest" ,python-pytest))) + (arguments + '(#:tests? #f)) ; The tests are not distributed (propagated-inputs `(("python-requests" ,python-requests) ("python-six" ,python-six))) |