Skip to content

Commit 9f66e22

Browse files
committed
Only concerned about fixed strings here.
1 parent 51478f1 commit 9f66e22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/scripts/analyze-skipped-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ALWAYS_SKIPPED_TESTS=""
1919
while IFS= read -r test; do
2020
if [ -n "$test" ]; then
2121
# Count how many files contain this test
22-
count=$(grep -l "^${test}$" skipped-tests-*.txt | wc -l)
22+
count=$(grep -l -F -x "$test" skipped-tests-*.txt | wc -l)
2323

2424
# If skipped in all runs, add to list
2525
if [ "$count" -eq "$TOTAL_TEST_RUNS" ]; then

0 commit comments

Comments
 (0)