diff options
author | Christopher Baines <mail@cbaines.net> | 2016-12-10 09:55:37 +0000 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2016-12-10 14:07:32 +0100 |
commit | a77f03608498de5e93560da8aac0cb8bf7cec7a7 (patch) | |
tree | 1cf9cd3d1f7546da0b00e3681a3279f8333bb1c0 /gnu/packages/password-utils.scm | |
parent | 619f98fa8f38fb26a447ad747f5f91223ab738ef (diff) | |
download | patches-a77f03608498de5e93560da8aac0cb8bf7cec7a7.tar patches-a77f03608498de5e93560da8aac0cb8bf7cec7a7.tar.gz |
gnu: password-store: Don't run tests in parallel.
* gnu/packages/password-utils.scm (password-store): Don't run tests in
parallel, as it causes them to hang and the build to timeout.
Signed-off-by: Marius Bakke <mbakke@fastmail.com>
Diffstat (limited to 'gnu/packages/password-utils.scm')
-rw-r--r-- | gnu/packages/password-utils.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm index bdb3acf4ef..8f6210880c 100644 --- a/gnu/packages/password-utils.scm +++ b/gnu/packages/password-utils.scm @@ -291,6 +291,9 @@ any X11 window.") (wrap-program (string-append out "/bin/pass") `("PATH" ":" prefix (,(string-join path ":")))))))) #:make-flags (list "CC=gcc" (string-append "PREFIX=" %output)) + ;; Parallel tests may cause a race condition leading to a + ;; timeout in some circumstances. + #:parallel-tests? #f #:test-target "test")) (inputs `(("getopt" ,util-linux) |