diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-25 14:20:33 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-25 14:20:41 +0000 |
commit | 9e2de68cf8aa5ac590ae3fca4fe90ac1b91bfa8a (patch) | |
tree | cc9fb7d5a74e2c9931280762290632592c275ef0 | |
parent | 13dd37fd9c438df5d52de2064f011e7b984c6578 (diff) | |
download | guix-9e2de68cf8aa5ac590ae3fca4fe90ac1b91bfa8a.tar.gz guix-9e2de68cf8aa5ac590ae3fca4fe90ac1b91bfa8a.zip |
gnu: go-github-com-pelletier-go-toml-v2: Single thread tests.
Tests still hang providing no errors and causing the build to fail, see
<https://ci.guix.gnu.org/build/8687212/log/raw>.
* gnu/packages/golang-xyz.scm (go-github-com-pelletier-go-toml-v2)
[arguments] <parallel-tests?>: Run tests in single thread.
Change-Id: Ic14b8467d8b696453240bd92f6f4bfc4daa55dd8
-rw-r--r-- | gnu/packages/golang-xyz.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 7c92b3459e..60321ace58 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -12314,6 +12314,7 @@ programs that use traditional command lines.") (arguments (list #:import-path "github.com/pelletier/go-toml/v2" + #:parallel-tests? #f #:test-flags #~(list "-short" "-count" "1" |