run integration tests serially
This commit is contained in:
parent
6074e4f962
commit
4ea422bcec
|
@ -21,11 +21,14 @@ _() {
|
||||||
}
|
}
|
||||||
|
|
||||||
FEATURES=cuda,erasure,chacha
|
FEATURES=cuda,erasure,chacha
|
||||||
_ cargo test --verbose --features=$FEATURES --lib
|
_ cargo test --verbose --features="$FEATURES" --lib
|
||||||
|
|
||||||
# Run integration tests serially
|
# Run integration tests serially
|
||||||
# shellcheck disable=SC2016
|
for test in tests/*.rs; do
|
||||||
_ find tests -type file -exec sh -c 'echo --test=$(basename ${0%.*})' {} \; | xargs cargo test --verbose --jobs=1 --features=$FEATURES
|
test=${test##*/} # basename x
|
||||||
|
test=${test%.rs} # basename x .rs
|
||||||
|
_ cargo test --verbose --jobs=1 --features="$FEATURES" --test="$test"
|
||||||
|
done
|
||||||
|
|
||||||
echo --- ci/localnet-sanity.sh
|
echo --- ci/localnet-sanity.sh
|
||||||
(
|
(
|
||||||
|
|
|
@ -17,8 +17,11 @@ _ cargo test --verbose --lib
|
||||||
_ cargo clippy -- --deny=warnings
|
_ cargo clippy -- --deny=warnings
|
||||||
|
|
||||||
# Run integration tests serially
|
# Run integration tests serially
|
||||||
# shellcheck disable=SC2016
|
for test in tests/*.rs; do
|
||||||
_ find tests -type file -exec sh -c 'echo --test=$(basename ${0%.*})' {} \; | xargs cargo test --verbose --jobs=1
|
test=${test##*/} # basename x
|
||||||
|
test=${test%.rs} # basename x .rs
|
||||||
|
_ cargo test --verbose --jobs=1 --test="$test"
|
||||||
|
done
|
||||||
|
|
||||||
echo --- ci/localnet-sanity.sh
|
echo --- ci/localnet-sanity.sh
|
||||||
(
|
(
|
||||||
|
|
Loading…
Reference in New Issue