We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a811816 commit ebe3689Copy full SHA for ebe3689
.github/workflows/pylint.yml
@@ -21,4 +21,5 @@ jobs:
21
pip install pylint
22
- name: Analysing the code with pylint
23
run: |
24
- PYTHONPATH=. pylint $(git ls-files '*.py')
+ # Exclude specific folders (e.g., tests, migrations)
25
+ PYTHONPATH=. pylint $(git ls-files '*.py' ':!:tests/*' ':!:alembic/*')
0 commit comments