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 d746fc1 commit 460c0c0Copy full SHA for 460c0c0
.github/scripts/tests_run.sh
@@ -86,7 +86,7 @@ function run_test() {
86
87
result=0
88
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=$?
+ bash -c "set +e; pytest tests --build-dir $build_dir -k test_$sketchname --junit-xml=$report_file $extra_args; exit \$?" || result=$?
90
echo "Test $sketchname return code: $result"
91
if [ $result -ne 0 ]; then
92
error=$result
0 commit comments