Run workspace member's tests (#1666)

Run workspace member's tests
This commit is contained in:
jackcmay 2018-10-30 22:53:36 -07:00 committed by GitHub
parent 74b4ecb7f3
commit 0529f36fde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

View File

@ -23,6 +23,16 @@ for test in tests/*.rs; do
_ cargo test --verbose --jobs=1 --test="$test"
done
# Run native program's tests
for program in programs/native/*; do
echo --- "$program"
(
set -x
cd "$program"
cargo test --verbose
)
done
echo --- ci/localnet-sanity.sh
(
set -x