From 0529f36fde08db02e4767830e4b53e481d825de8 Mon Sep 17 00:00:00 2001 From: jackcmay Date: Tue, 30 Oct 2018 22:53:36 -0700 Subject: [PATCH] Run workspace member's tests (#1666) Run workspace member's tests --- ci/test-stable.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ci/test-stable.sh b/ci/test-stable.sh index df611ce38d..5d2b219697 100755 --- a/ci/test-stable.sh +++ b/ci/test-stable.sh @@ -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