diff options
author | Leo Famulari <leo@famulari.name> | 2018-01-16 15:30:04 -0800 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2018-01-16 16:18:11 -0800 |
commit | dce2ad69538ee95d789b7efb2d7a483cbfb06bcb (patch) | |
tree | 658fd1a29c7a1f657eab6a23f6ea615b5acc6b8a | |
parent | aebd91bb9f9896c245535e6da5b0f06618596a29 (diff) |
gnu: python-graphql-relay: Skip the test phase.
* gnu/packages/python.scm (python-graphql-relay,
python2-graphql-relay)[arguments]: Set #:tests? #f
-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 0489b157d2..e1216eb382 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -9578,8 +9578,8 @@ to Python.") (base32 "1nv5dxcj59zv31qvl8bd142njmxcmymny2dz3br1l2cpbljbf5i7")))) (build-system python-build-system) - (native-inputs - `(("python-pytest" ,python-pytest))) + (arguments + '(#:tests? #f)) ; The tests are not distributed (propagated-inputs `(("python-graphql-core" ,python-graphql-core) ("python-promise" ,python-promise) |