~ruther/guix-local

c3b5b1bb49084ac816750cedc8f03a55884b2dd8 — Danny Milosavljevic 8 years ago 95c3682
gnu: python-internetarchive: Heed disabled test suite.

* gnu/packages/web.scm (python-internetarchive)[arguments]: Heed disable test
suite.
1 files changed, 10 insertions(+), 5 deletions(-)

M gnu/packages/web.scm
M gnu/packages/web.scm => gnu/packages/web.scm +10 -5
@@ 4716,11 4716,16 @@ command-line arguments or read from stdin.")
       (modify-phases %standard-phases
         (delete 'check)
         (add-after 'install 'check
           (lambda* (#:key inputs outputs #:allow-other-keys)
             (add-installed-pythonpath inputs outputs)
             (setenv "PATH" (string-append (assoc-ref outputs "out") "/bin"
                                           ":" (getenv "PATH")))
             (zero? (system* "py.test")))))))
           (lambda* (#:key inputs outputs target (tests? (not target)) #:allow-other-keys)
             (if tests?
               (begin
                 (add-installed-pythonpath inputs outputs)
                 (setenv "PATH" (string-append (assoc-ref outputs "out") "/bin"
                                               ":" (getenv "PATH")))
                 (zero? (system* "py.test")))
               (begin
                 (format #t "test suite not run~%")
                 #t)))))))
    (propagated-inputs
     `(("python-requests" ,python-requests)
       ("python-jsonpatch" ,python-jsonpatch-0.4)