Skip to content

Commit

Permalink
contains instead of equals
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton-4 authored Feb 2, 2024
1 parent cb80c07 commit a0ba52e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/all_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ done
# `roc test` every roc file if it contains a test
find . -type f -name "*.roc" | while read file; do
# Arg.roc hits github.com/roc-lang/roc/issues/5701
if [[ ! "$file" =~ ^(Arg\.roc)$ ]]; then
if [[ $file != *"Arg.roc" ]]; then
if grep -qE '^\s*expect(\s+|$)' "$file"; then
$ROC test "$file"
fi
Expand Down

0 comments on commit a0ba52e

Please sign in to comment.