Skip to content

Commit

Permalink
ci: ignore integration domain for normal tests
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
tegefaulkes committed Dec 19, 2023
1 parent 0a70751 commit d6a87a3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/check-test-generate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ for test_dir in tests/**/*/; do
if [[ "$test_dir" =~ discovery ]]; then
continue
fi
# Ignore integration domain for now
if [[ "$test_dir" =~ integration ]]; then
continue
fi
test_files=("$test_dir"*.test.ts)
if [ ${#test_files[@]} -eq 0 ]; then
continue
Expand Down

0 comments on commit d6a87a3

Please sign in to comment.