[github-actions] upload test result artifacts (#5479)

This commit is contained in:
Simon Lin
2020-09-10 08:40:22 -07:00
committed by GitHub
parent 29ace9cf52
commit cf1057b780
4 changed files with 53 additions and 1 deletions
+1 -1
View File
@@ -199,7 +199,7 @@ do_cert_suite()
for test_case in "$@"; do
rm -rf tmp || sudo rm -rf tmp
if "${test_case}" &>test.log; then
if TEST_NAME="$(basename "${test_case}" .py)" "${test_case}" &>test.log; then
echo -e "${COLOR_PASS}PASS${COLOR_NONE} ${test_case}"
pass_count=$((pass_count + 1))
else