Skip to content

Commit 27a3730

Browse files
committed
Configure flake8 to only lint project files
Flake8 was scanning all files including third-party dependencies, causing false positive errors. Now only scans python-examples/ directory.
1 parent b00a883 commit 27a3730

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ jobs:
4949
5050
- name: Lint with flake8
5151
run: |
52-
uv run flake8 --count --select=E9,F63,F7,F82 --show-source --statistics
53-
uv run flake8 --count --exit-zero --max-complexity=10 --max-line-length=100 --statistics
52+
uv run flake8 python-examples/ --count --select=E9,F63,F7,F82 --show-source --statistics
53+
uv run flake8 python-examples/ --count --exit-zero --max-complexity=10 --max-line-length=100 --statistics

0 commit comments

Comments
 (0)