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 69f714e commit 1d3341bCopy full SHA for 1d3341b
.github/workflows/test.yml
@@ -348,14 +348,14 @@ jobs:
348
# Create remaining tests
349
echo "Finding remaining tests to run..."
350
if [[ -s "$ALL_TESTS_FILE" ]]; then
351
- grep -v -F -f "$FAILED_TESTS_FILE" "$ALL_TESTS_FILE" > "$REMAINING_TESTS_FILE" || true
+ grep -v -F -f $FAILED_TESTS_FILE $ALL_TESTS_FILE > $REMAINING_TESTS_FILE || true
352
else
353
echo "Error: ALL_TESTS_FILE is empty or missing"
354
exit 1
355
fi
356
357
# Output results
358
- if [[ -s "$REMAINING_TESTS_FILE" ]]; then
+ if [[ -s $REMAINING_TESTS_FILE ]]; then
359
echo "Remaining tests to run:"
360
cat "$REMAINING_TESTS_FILE"
361
0 commit comments