ignore recordings dir

This commit is contained in:
Ashwin Bharambe 2025-07-29 13:46:23 -07:00
parent 3827c99e05
commit 2d8abc6c0d

View file

@ -48,7 +48,7 @@ jobs:
run: | run: |
# Get test directories dynamically, excluding non-test directories # Get test directories dynamically, excluding non-test directories
TEST_TYPES=$(find tests/integration -maxdepth 1 -mindepth 1 -type d -printf "%f\n" | TEST_TYPES=$(find tests/integration -maxdepth 1 -mindepth 1 -type d -printf "%f\n" |
grep -Ev "^(__pycache__|fixtures|test_cases)$" | grep -Ev "^(__pycache__|fixtures|test_cases|recordings)$" |
sort | jq -R -s -c 'split("\n")[:-1]') sort | jq -R -s -c 'split("\n")[:-1]')
echo "test-type=$TEST_TYPES" >> $GITHUB_OUTPUT echo "test-type=$TEST_TYPES" >> $GITHUB_OUTPUT