Skip to content

Commit 460c0c0

Browse files
committed
Test
1 parent d746fc1 commit 460c0c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/tests_run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function run_test() {
8686

8787
result=0
8888
echo "pytest tests --build-dir $build_dir -k test_$sketchname --junit-xml=$report_file $extra_args"
89-
bash -c "pytest tests --build-dir $build_dir -k test_$sketchname --junit-xml=$report_file $extra_args" || result=$?
89+
bash -c "set +e; pytest tests --build-dir $build_dir -k test_$sketchname --junit-xml=$report_file $extra_args; exit \$?" || result=$?
9090
echo "Test $sketchname return code: $result"
9191
if [ $result -ne 0 ]; then
9292
error=$result

0 commit comments

Comments
 (0)