Skip to content

Commit

Permalink
dont test Arg.roc
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton-4 authored Feb 2, 2024
1 parent e2fc5ac commit cb80c07
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions ci/all_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,11 @@ done

# `roc test` every roc file if it contains a test
find . -type f -name "*.roc" | while read file; do
if grep -qE '^\s*expect(\s+|$)' "$file"; then
$ROC test "$file"
# Arg.roc hits github.com/roc-lang/roc/issues/5701
if [[ ! "$file" =~ ^(Arg\.roc)$ ]]; then
if grep -qE '^\s*expect(\s+|$)' "$file"; then
$ROC test "$file"
fi
fi
done

Expand Down

0 comments on commit cb80c07

Please sign in to comment.