Require core tests to pass in Travis (#969)
This commit is contained in:
parent
61c665dbe4
commit
4a3e68416c
2 changed files with 2 additions and 8 deletions
|
@ -43,15 +43,9 @@ fi
|
|||
|
||||
popd
|
||||
|
||||
if [[ "$OSTYPE" == "darwin"* ]]; then
|
||||
TRUE_CMD=gtrue
|
||||
else
|
||||
TRUE_CMD=true
|
||||
fi
|
||||
|
||||
pushd load-tester
|
||||
cargo build --release
|
||||
popd
|
||||
cp ./load-tester/target/release/raiblocks-load-tester ./build/load_test
|
||||
|
||||
./ci/test.sh ./build || ${TRUE_CMD}
|
||||
./ci/test.sh ./build
|
||||
|
|
|
@ -54,7 +54,7 @@ run_tests() {
|
|||
echo "Core Test return code: ${core_test_res}"
|
||||
echo "QT Test return code: ${qt_test_res}"
|
||||
echo "Load Test return code: ${load_test_res}"
|
||||
return $((${core_test_res} + ${qt_test_res} + ${load_test_res}))
|
||||
return ${core_test_res}
|
||||
}
|
||||
|
||||
cd ${build_dir}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue