Testing return values from run_tests
This commit is contained in:
parent
9310836bbd
commit
1eed63a612
1 changed files with 1 additions and 3 deletions
|
@ -27,14 +27,13 @@ install_repo() {
|
|||
run_tests() {
|
||||
echo "Running tests"
|
||||
pytest 2>&1 | tee "$TEST_LOG"
|
||||
deactivate
|
||||
|
||||
grep -e '^FAILED ' "$TEST_LOG"
|
||||
if [[ $? == 0 ]]; then
|
||||
echo HERE FAIL
|
||||
return 2 # FAILURE
|
||||
fi
|
||||
|
||||
echo HERE PASS
|
||||
return 0 # PASSED
|
||||
}
|
||||
|
||||
|
@ -47,7 +46,6 @@ prepare_venv
|
|||
install_repo
|
||||
run_tests
|
||||
ret=$?
|
||||
echo "RET: $ret"
|
||||
cleanup
|
||||
|
||||
if [[ $ret == 0 ]]; then
|
||||
|
|
Loading…
Reference in a new issue