Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion launchable/commands/subset.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'(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
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,
Expand Down
2 changes: 1 addition & 1 deletion launchable/utils/launchable_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from launchable.utils.tracking import Tracking, TrackingClient # type: ignore

from ..app import Application
from .authentication import get_org_workspace, ensure_org_workspace
from .authentication import ensure_org_workspace
from .env_keys import REPORT_ERROR_KEY


Expand Down
Loading