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 2670f8f commit c847ae2Copy full SHA for c847ae2
.github/scripts/extract-skipped-tests.sh
@@ -32,7 +32,7 @@ for file in phpunit-results-*.xml; do
32
fi
33
34
# Extract skipped tests in class::method format
35
- SKIPPED_TESTS=$(xmllint --format "$file" 2>/dev/null | grep -B1 "<skipped" | grep "testcase" | sed -n 's/.*name="\([^"]*\)".*classname="\([^"]*\)".*/\2::\1/p' || true)
+ SKIPPED_TESTS=$(xmllint --format "$file" 2>/dev/null | grep -B1 "<skipped" | grep "testcase" | sed -n 's/.*name="\([^"]*\)".*class="\([^"]*\)".*/\2::\1/p' || true)
36
37
echo "DEBUG: Extracted skipped tests: '$SKIPPED_TESTS'"
38
0 commit comments