I love using PyCharm's Find in Files tool, which allows me to search for text across the entire project. I know I can use the "File mask" filter to exclude certain file types from being searched.
I want to search across all Python files, excluding test files. That is, file names that start with test
.
What I know:
- How to search across all Python files:
*.py
- How to search across all files besides test files:
!test*.py
How can I combine these to search across all Python files, besides these test files?