Skip to content

Commit d02d7a0

Browse files
authored
WIP: Travis CI: Lower flake8 max-complexity to 15
Work In Progress Draft: Do not merge if test are not passing!! Related to #2128, find all files that contain algorithms with > 15% McCabe complexity.
1 parent d034add commit d02d7a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: .travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ notifications:
1010
on_success: never
1111
before_script:
1212
- black --check . || true
13-
- flake8 --ignore=E203,W503 --max-complexity=25 --max-line-length=88 --statistics --count .
13+
- flake8 --ignore=E203,W503 --max-complexity=15 --max-line-length=88 --statistics --count .
1414
- scripts/validate_filenames.py # no uppercase, no spaces, in a directory
1515
- pip install -r requirements.txt # fast fail on black, flake8, validate_filenames
1616
script:

0 commit comments

Comments
 (0)