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 803f3ca commit 5edb410Copy full SHA for 5edb410
detection.sh
@@ -35,6 +35,9 @@ suite_success(){
35
if cat "$file" | grep "$plural";then
36
find_fail $plural $file
37
return $?
38
+ elif cat "$file" | grep "$singular";then
39
+ find_fail $singular $file
40
+ return $?
41
else
42
echo "Skipping file without suite: $file"
43
fi
test/all.sh
@@ -6,6 +6,7 @@ set -e
6
7
test/one.sh test/success_fixture.xml 0
8
test/one.sh test/failure_fixture.xml 1
9
+test/one.sh test/singular_testsuite_failure_fixture.xml 1
10
test/one.sh test/error_fixture.xml 1
11
12
test/one.sh test 1
test/single_failure_fixture.xml renamed to test/singular_testsuite_failure_fixture.xml
0 commit comments