Skip to content

Commit

Permalink
Merge pull request #4646 from ckan/fix-flake8-checks
Browse files Browse the repository at this point in the history
Flake8 can ignore 'rjsmin.py' imported code
  • Loading branch information
amercader committed Feb 1, 2019
2 parents 469713b + 552ca50 commit e3f3fa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -36,7 +36,7 @@ matrix:
before_script:
- flake8 --version
# stop the build if there are Python syntax errors or undefined names
- flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
- flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics --exclude ./ckan/include/rjsmin.py
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
script:
Expand Down

0 comments on commit e3f3fa0

Please sign in to comment.