diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-03-14 14:21:52 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:44:59 +0200 |
commit | 17cf9fc0c15f5c2d9e4729221c59052f481a41ef (patch) | |
tree | 27da5ea9d4eadf94bc22474cb09756d04535aa0b /gnu | |
parent | b2c8082977dcc8361d234a3b187286b0d1b10e80 (diff) | |
download | guix-17cf9fc0c15f5c2d9e4729221c59052f481a41ef.tar.gz guix-17cf9fc0c15f5c2d9e4729221c59052f481a41ef.zip |
gnu: curl: Do not run known flaky tests.
* gnu/packages/curl.scm (curl) [arguments]: Specify the "test-nonflaky" as the
test target.
Change-Id: I219b72c3b16b53ff6e469716eed0699ba88e29e1
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/curl.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/curl.scm b/gnu/packages/curl.scm index 59703adac0..1849a83435 100644 --- a/gnu/packages/curl.scm +++ b/gnu/packages/curl.scm @@ -104,6 +104,7 @@ (search-input-file %build-inputs "lib/libgssrpc.so")))) "--disable-static") + #:test-target "test-nonflaky" ;avoid tests marked as "flaky" #:phases #~(modify-phases %standard-phases (add-after 'unpack 'do-not-record-configure-flags |