Manually set test script exit code (#2199)

pull/2200/head
Gulshan Singh 2 years ago committed by GitHub
parent c85d16b246
commit 6937566aa8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -2,6 +2,7 @@
# Run integration tests
(cd tests/gdb-tests && python3 tests.py $@)
exit_code=$?
COV=0
# Run unit tests
@ -17,3 +18,7 @@ if [ $COV -eq 1 ]; then
else
pytest tests/unit-tests
fi
exit_code=$((exit_code + $?))
exit $exit_code

Loading…
Cancel
Save