[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: borg: Fix the test suite.
From: |
Leo Famulari |
Subject: |
01/01: gnu: borg: Fix the test suite. |
Date: |
Wed, 30 Nov 2016 10:40:10 +0000 (UTC) |
lfam pushed a commit to branch master
in repository guix.
commit 1d60f7c2b38733b031519a48771c44d20acb785d
Author: Leo Famulari <address@hidden>
Date: Wed Nov 30 01:09:08 2016 -0500
gnu: borg: Fix the test suite.
* gnu/packages/backup.scm (borg)[arguments]: Use
add-installed-pythonpath and disable tests related to FUSE.
---
gnu/packages/backup.scm | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm
index 94b2e82..a503b06 100644
--- a/gnu/packages/backup.scm
+++ b/gnu/packages/backup.scm
@@ -435,7 +435,9 @@ detection, and lossless compression.")
;; The tests need to be run after Borg is installed.
(delete 'check)
(add-after 'install 'check
- (lambda _
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ ;; Make the installed package available for the test suite.
+ (add-installed-pythonpath inputs outputs)
(zero?
(system* "py.test" "-v" "--pyargs" "borg.testsuite" "-k"
(string-append
@@ -448,7 +450,13 @@ detection, and lossless compression.")
"and not test_default_acl "
"and not test_non_ascii_acl "
;; This test needs the unpackaged pytest-benchmark.
- "and not benchmark")))))
+ "and not benchmark "
+ ;; These tests assume the kernel supports FUSE. They
+ ;; were skipped using the "old" Python build system,
+ ;; before commit
+ ;; 7db40bce58e149ecb541d295e01cfbfe953d39a3.
+ "and not test_fuse "
+ "and not test_fuse_allow_damaged_files")))))
(add-after 'install 'install-doc
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))