guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: unionfs-fuse: Skip the test phase.


From: Leo Famulari
Subject: 01/01: gnu: unionfs-fuse: Skip the test phase.
Date: Wed, 17 Jan 2018 20:54:17 -0500 (EST)

lfam pushed a commit to branch core-updates
in repository guix.

commit 3ef273377e9435f3f295fd8e268729f378a575e7
Author: Leo Famulari <address@hidden>
Date:   Wed Jan 17 17:52:49 2018 -0800

    gnu: unionfs-fuse: Skip the test phase.
    
    * gnu/packages/linux.scm (unionfs-fuse)[arguments]: Set #:tests? #f.
    [native-inputs]: Remove python-pytest.
---
 gnu/packages/linux.scm | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 5427a1f..5fef648 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -1630,15 +1630,12 @@ user-space processes.")
                 "0hsn8l1iblvx27bpd4dvnvnbh9ri3sv2f9xzpsnfz3379kb7skgj"))))
     (build-system cmake-build-system)
     (native-inputs
-     `(("python" ,python)
-       ("python-pytest" ,python-pytest)))
+     `(("python" ,python)))
     (inputs `(("fuse" ,fuse)))
     (arguments
-     '(#:phases
-       (modify-phases %standard-phases
-         (replace 'check
-           ;; Borrowed from the Makefile
-           (lambda _ (zero? (system* "python3" "-m" "pytest")))))))
+     ;; The tests were never actually run ("collected 0 items"), but in recent
+     ;; versions of pytest that causes an error.
+     '(#:tests? #f))
     (home-page "https://github.com/rpodgorny/unionfs-fuse";)
     (synopsis "User-space union file system")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]