This is an automated email from the git hooks/post-receive script.
efraim pushed a commit to branch rust-team
in repository guix.
The following commit(s) were added to refs/heads/rust-team by this push:
new cbb21d0984 gnu: alacritty: Skip a test.
cbb21d0984 is described below
commit cbb21d0984d8a12b6c42d86c9b70805bf5d857f2
Author: Efraim Flashner <[email protected]>
AuthorDate: Mon Dec 16 09:22:33 2024 +0200
gnu: alacritty: Skip a test.
* gnu/packages/terminals.scm (alacritty)[arguments]: Add a
cargo-test-flag to skip the shell completions test.
Change-Id: I324404c536934652e5e647ab0a37b59f21a29819
---
gnu/packages/terminals.scm | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 0f9c5ab352..f159abd3af 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -1558,6 +1558,10 @@ basic input/output.")
(build-system cargo-build-system)
(arguments
`(#:install-source? #f
+ #:cargo-test-flags
+ '("--release" "--"
+ ;; Changes in clap regularly break this test.
+ "--skip=cli::tests::completions")
#:cargo-inputs
(("rust-ahash" ,rust-ahash-0.8)
("rust-base64" ,rust-base64-0.22)