From d658027b3641a5fb66398109a01253430cd085e7 Mon Sep 17 00:00:00 2001 From: Konboi Date: Wed, 5 Nov 2025 17:58:07 +0900 Subject: [PATCH] update ignore list --- launchable/commands/subset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launchable/commands/subset.py b/launchable/commands/subset.py index efe0ab325..b0ecf1781 100644 --- a/launchable/commands/subset.py +++ b/launchable/commands/subset.py @@ -529,7 +529,7 @@ def get_payload( def _collect_potential_test_files(self): LOOSE_TEST_FILE_PATTERN = r'(\.(test|spec)\.|_test\.|Test\.|Spec\.|test/|tests/|__tests__/|src/test/)' - EXCLUDE_PATTERN = r'\.(xml|json|txt|yml|yaml|md)$' + EXCLUDE_PATTERN = r'(BUILD|Makefile|Dockerfile|LICENSE|.gitignore|.gitkeep|.keep|id_rsa|rsa|blank|taglib)|\.(xml|json|jsonl|txt|yml|yaml|toml|md|png|jpg|jpeg|gif|svg|sql|html|css|graphql|proto|gz|zip|rz|bzl|conf|config|snap|pem|crt|key|lock|jpi|hpi|jelly|properties|jar|ini|mod|sum|bmp|env|envrc|sh)$' ## noqa E501 try: git_managed_files = subprocess.run(['git', 'ls-files'], stdout=subprocess.PIPE,