From 009e74732321f9f3e6d09e158dd577a7d9ebca35 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Fri, 9 Aug 2024 12:12:42 +1000 Subject: [PATCH] CI: Put fuzz last in CRATES list There is a bug in `run_task` [0] that drastically reduces our test coverage. We can bypass it by putting `fuzz` last in the list. [0] rust-bitcoin/rust-bitcoin-maintainer-tools#10 --- contrib/crates.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/crates.sh b/contrib/crates.sh index b3bb34178..c3d605eee 100644 --- a/contrib/crates.sh +++ b/contrib/crates.sh @@ -5,4 +5,4 @@ # shellcheck disable=SC2034 # Crates in this workspace to test (note "fuzz" is only built not tested). -CRATES=("addresses" "base58" "bitcoin" "fuzz" "hashes" "internals" "io" "units") +CRATES=("addresses" "base58" "bitcoin" "hashes" "internals" "io" "units" "fuzz")