Fix not-reported flaky tests (#22639)
Signed-off-by: Michal Hajas <mhajas@redhat.com>
This commit is contained in:
parent
3819112b55
commit
fa1f1ebc70
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ runs:
|
|||
FLAKES=""
|
||||
SEP=""
|
||||
for dir in $(find -type d -name 'surefire-reports*'); do
|
||||
for i in $(grep -l '<flakyFailure' $dir/TEST-*.xml); do
|
||||
for i in $(grep -l -E '<flakyFailure|<flakyError' $dir/TEST-*.xml); do
|
||||
FLAKES="$FLAKES$SEP$i"
|
||||
SEP=$'\n'
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue