gnu: unionfs-fuse: Skip the test phase.

* gnu/packages/linux.scm (unionfs-fuse)[arguments]: Set #:tests? #f.
[native-inputs]: Remove python-pytest.
master
Leo Famulari 2018-01-17 17:52:49 -08:00
parent 9e9a207b49
commit 3ef273377e
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 4 additions and 7 deletions

View File

@ -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