diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 5a87eb5f6e..0be62ac12c 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -5239,12 +5239,12 @@ (define-public python-internetarchive (add-installed-pythonpath inputs outputs) (setenv "PATH" (string-append (assoc-ref outputs "out") "/bin" ":" (getenv "PATH"))) - (zero? (system* "py.test" "-v" "-k" - (string-append - ;; These tests attempt to make a connection to - ;; an external web service. - "not test_get_item_with_kwargs" - " and not test_ia")))))))) + (invoke "py.test" "-v" "-k" + (string-append + ;; These tests attempt to make a connection to + ;; an external web service. + "not test_get_item_with_kwargs" + " and not test_ia"))))))) (propagated-inputs `(("python-requests" ,python-requests) ("python-jsonpatch" ,python-jsonpatch-0.4)