Skip to content

Commit 469a080

Browse files
committed
Only run flake8 on the pyNN module
1 parent 17d57cc commit 469a080

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/full-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ jobs:
6363
- name: Lint with flake8
6464
run: |
6565
# stop the build if there are Python syntax errors or undefined names
66-
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
66+
flake8 pyNN --count --select=E9,F63,F7,F82 --show-source --statistics
6767
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
68-
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
68+
flake8 pyNN --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
6969
- name: Run unit and system tests
7070
run: |
7171
pytest -v --cov=pyNN --cov-report=term test

0 commit comments

Comments
 (0)