We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b91fab8 commit 79425bdCopy full SHA for 79425bd
.github/scripts/tests_run.sh
@@ -84,8 +84,10 @@ function run_test() {
84
fi
85
86
echo "pytest tests --build-dir $build_dir -k test_$sketchname --junit-xml=$report_file $extra_args"
87
+ set +e
88
bash -c "pytest tests --build-dir $build_dir -k test_$sketchname --junit-xml=$report_file $extra_args"
89
result=$?
90
+ set -e
91
echo "Test $sketchname return code: $result"
92
if [ $result -ne 0 ]; then
93
error=$result
0 commit comments