mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 22:26:40 -05:00
gnu: unionfs-fuse: Skip the test phase.
* gnu/packages/linux.scm (unionfs-fuse)[arguments]: Set #:tests? #f. [native-inputs]: Remove python-pytest.
This commit is contained in:
parent
9e9a207b49
commit
3ef273377e
1 changed files with 4 additions and 7 deletions
|
@ -1630,15 +1630,12 @@ (define-public unionfs-fuse
|
||||||
"0hsn8l1iblvx27bpd4dvnvnbh9ri3sv2f9xzpsnfz3379kb7skgj"))))
|
"0hsn8l1iblvx27bpd4dvnvnbh9ri3sv2f9xzpsnfz3379kb7skgj"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python" ,python)
|
`(("python" ,python)))
|
||||||
("python-pytest" ,python-pytest)))
|
|
||||||
(inputs `(("fuse" ,fuse)))
|
(inputs `(("fuse" ,fuse)))
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
;; The tests were never actually run ("collected 0 items"), but in recent
|
||||||
(modify-phases %standard-phases
|
;; versions of pytest that causes an error.
|
||||||
(replace 'check
|
'(#:tests? #f))
|
||||||
;; Borrowed from the Makefile
|
|
||||||
(lambda _ (zero? (system* "python3" "-m" "pytest")))))))
|
|
||||||
(home-page "https://github.com/rpodgorny/unionfs-fuse")
|
(home-page "https://github.com/rpodgorny/unionfs-fuse")
|
||||||
(synopsis "User-space union file system")
|
(synopsis "User-space union file system")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue