Skip to content

Commit

Permalink
Merge pull request #679 from cloudtools/flake8-fixes
Browse files Browse the repository at this point in the history
Fix lint warnings
  • Loading branch information
ejholmes committed Nov 3, 2018
2 parents 749054c + ba54836 commit 6d51e8a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
- checkout
- run: sudo pip install flake8 codecov pep8-naming flake8-future-import
- run: sudo python setup.py install
- run: flake8 --version
- run: sudo make lint

unit-test-27:
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ build:
docker build -t remind101/stacker .

lint:
flake8 --require-code --min-version=2.7 --ignore FI50,FI51,FI53,FI14,E402 --exclude stacker/tests/ stacker
flake8 --require-code --min-version=2.7 --ignore FI50,FI51,FI53,FI14,E402,N802 stacker/tests # ignore setUp naming
flake8 --require-code --min-version=2.7 --ignore FI50,FI51,FI53,FI14,E402,W503,W504,W605 --exclude stacker/tests/ stacker
flake8 --require-code --min-version=2.7 --ignore FI50,FI51,FI53,FI14,E402,N802,W605 stacker/tests # ignore setUp naming

test-unit: clean
AWS_DEFAULT_REGION=us-east-1 python setup.py nosetests
Expand Down

0 comments on commit 6d51e8a

Please sign in to comment.