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
This commit is contained in:
parent
aed61bd2d4
commit
009e747323
|
@ -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")
|
||||
|
|
Loading…
Reference in New Issue