diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2024-08-19 17:50:45 +0200 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2024-08-19 17:50:45 +0200 |
commit | 06b1f16b8a7735f2f526d6472c138962f54eee29 (patch) | |
tree | 888345848956c54218a8b31a1103d3634f344387 | |
parent | 1902a1c3debb8952d151685e5db5bd17225e72cf (diff) | |
download | guix-06b1f16b8a7735f2f526d6472c138962f54eee29.tar.gz guix-06b1f16b8a7735f2f526d6472c138962f54eee29.zip |
gnu: cl-chanl: Disable flaky tests.
* gnu/packages/lisp-xyz.scm (sbcl-chanl)[arguments]: Disable tests.
Change-Id: I958183bfc9b098efefa18f915b438f21d0013fc5
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 0b369a00d8..35faeccf7a 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -3116,6 +3116,9 @@ package.") (list sbcl-fiveam)) (inputs (list sbcl-bordeaux-threads)) + (arguments + ;; Disable flaky tests + (list #:tests? #f)) (synopsis "Portable channel-based concurrency for Common Lisp") (description "Common Lisp library for channel-based concurrency. In a nutshell, you create various threads sequentially executing tasks you need |