8000 Fix flake8 · dozure/twilio-python@c38d36d · GitHub
[go: up one dir, main page]

Skip to content

Commit c38d36d

Browse files
author
Carlos Diaz-Padron
committed
Fix flake8
1 parent 6df4955 commit c38d36d

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,4 @@ install:
1010
- pip install -r requirements.txt --use-mirrors
1111
- pip install -r tests/requirements.txt --use-mirrors
1212
script:
13-
- flake8 --ignore=F401 twilio
14-
- flake8 --ignore=E123,E126,E128,E501 tests
15-
- nosetests
13+
- make test

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ develop: venv
1414
. venv/bin/activate; pip install -r tests/requirements.txt
1515

1616
analysis:
17-
. venv/bin/activate; flake8 --ignore=E123,E126,E128,E501 tests
18-
. venv/bin/activate; flake8 --ignore=F401 twilio
17+
. venv/bin/activate; flake8 --ignore=E123,E126,E128,E501,W391,W291,W293,F401 tests
18+
. venv/bin/activate; flake8 --ignore=F401,W391,W291,W293 twilio --max-line-length=300
1919

20-
test:
20+
test: analysis
2121
. venv/bin/activate; \
2222
find tests -type d | xargs nosetests
2323

0 commit comments

Comments
 (0)
0