diff options
author | Leo Famulari <leo@famulari.name> | 2018-04-26 21:49:31 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2018-05-01 10:52:54 -0400 |
commit | 80da197ad4f8fcfe4de5dc5b9785f28f095c3784 (patch) | |
tree | b69ddf529f86eda7e5da292fe8ea9c0b8b52fb8c /gnu/packages/syncthing.scm | |
parent | 6c46e8e693279f22ab6a1f88b5a05cde0b6b585b (diff) | |
download | guix-80da197ad4f8fcfe4de5dc5b9785f28f095c3784.tar guix-80da197ad4f8fcfe4de5dc5b9785f28f095c3784.tar.gz |
gnu: go-github-com-kardianos-osext: Skip the tests.
* gnu/packages/syncthing.scm (go-github-com-kardianos-osext)[arguments]:
Disable the test suite.
Diffstat (limited to 'gnu/packages/syncthing.scm')
-rw-r--r-- | gnu/packages/syncthing.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm index ea24be2058..485162ac90 100644 --- a/gnu/packages/syncthing.scm +++ b/gnu/packages/syncthing.scm @@ -505,7 +505,10 @@ address of the default LAN gateway.") "056dkgxrqjj5r18bnc3knlpgdz5p3yvp12y4y978hnsfhwaqvbjz")))) (build-system go-build-system) (arguments - `(#:import-path "github.com/kardianos/osext")) + `(#:import-path "github.com/kardianos/osext" + ;; The tests are flaky: + ;; <https://github.com/kardianos/osext/issues/21> + #:tests? #f)) (synopsis "Find the running executable") (description "Osext provides a method for finding the current executable file that is running. This can be used for upgrading the current executable or |