diff options
author | Leo Famulari <leo@famulari.name> | 2016-10-11 00:48:45 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-10-11 01:18:34 -0400 |
commit | 1df6d73bdf7044ad0818c95969b8872414497682 (patch) | |
tree | ac6be9972f3041fe5bad246d73808f49bb05e2e8 /gnu/packages/backup.scm | |
parent | 085cca5bc1d8ca6b3d7d01e4a5c4f0f3886e7fbc (diff) | |
download | patches-1df6d73bdf7044ad0818c95969b8872414497682.tar patches-1df6d73bdf7044ad0818c95969b8872414497682.tar.gz |
gnu: attic: Disable the test suite.
* gnu/packages/backup.scm (attic)[arguments]: Set #:tests? #f.
Diffstat (limited to 'gnu/packages/backup.scm')
-rw-r--r-- | gnu/packages/backup.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index fca601fef3..535d535d9e 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -475,7 +475,10 @@ to not fully trusted targets. Borg is a fork of Attic.") "0b5skd36r4c0915lwpkqg5hxm49gls9pprs1b7hc40910wlcsl36")))) (build-system python-build-system) (arguments - `(#:phases + `(;; The tests assume they are run as root: + ;; https://github.com/jborg/attic/issues/7 + #:tests? #f + #:phases (modify-phases %standard-phases (add-before 'build 'set-openssl-prefix |