File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -44,8 +44,12 @@ hook() {
44
44
result=" $( echo " $job_data " | runjq -r ' .job.result' ) " || return $?
45
45
[[ " $state " != " done" ]] && return
46
46
if [[ " $result " != passed ]]; then
47
- bats_package=" $( echo " $job_data " | runjq -r ' .job.settings.BATS_PACKAGE' ) "
48
- if [[ $bats_package != " null" ]]; then
47
+ testsuite=" $( echo " $job_data " | runjq -r ' .job.settings.TEST' ) "
48
+ # Remove optional "container_host_" prefix
49
+ testsuite=" ${testsuite# container_host_} "
50
+ # Remove optional "_crun" suffix
51
+ testsuite=" ${testsuite% _crun} "
52
+ if [[ $testsuite =~ ^(aardvark| buildah| conmon| docker| netavark| podman| runc| skopeo)_(e2e| testsuite)$ ]]; then
49
53
openqa-bats-review " $url " && return
50
54
fi
51
55
label " $url " | investigate-and-bisect
You can’t perform that action at this time.
0 commit comments