gnu: password-store: Don't run tests in parallel.
authorChristopher Baines <mail@cbaines.net>
Sat, 10 Dec 2016 09:55:37 +0000 (09:55 +0000)
committerMarius Bakke <mbakke@fastmail.com>
Sat, 10 Dec 2016 13:07:32 +0000 (14:07 +0100)
* 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>
gnu/packages/password-utils.scm

index bdb3acf..8f62108 100644 (file)
@@ -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)