fix: remove helper function _normalize_pattern
#386
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR removes the helper function
_normalize_pattern(and its use inside_parse_patterns)Before
gitingest -e "*/test_*"├── tests/ │ ├── __init__.py │ ├── conftest.py │ ├── .pylintrc │ └── query_parser/ │ ├── __init__.py │ ├── test_git_host_agnostic.py │ └── test_query_parser.pygitingest -e "**/test_*"gitingest -e "/test_*"├── tests/ │ ├── __init__.py │ ├── conftest.py │ ├── .pylintrc │ └── query_parser/ │ └── __init__.pyNow:
gitingest -e "*/test_*": Same behaviourgitingest -e "**/test_*": Same behaviourgitingest -e "/test_*": Excludes no tests (matches only at project root)├── tests/ │ ├── __init__.py │ ├── conftest.py │ ├── test_cli.py │ ├── test_clone.py │ ├── test_flow_integration.py │ ├── test_git_utils.py │ ├── test_gitignore_feature.py │ ├── test_ingestion.py │ ├── test_notebook_utils.py │ ├── .pylintrc │ └── query_parser/ │ ├── __init__.py │ ├── test_git_host_agnostic.py │ └── test_query_parser.py