8000 Fix CI · sangsiri/twilio-python@5ddefe6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5ddefe6

Browse files
author
Carlos Diaz-Padron
committed
Fix CI
1 parent c38d36d commit 5ddefe6

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ install:
1010
- pip install -r requirements.txt --use-mirrors
1111
- pip install -r tests/requirements.txt --use-mirrors
1212
script:
13-
- make test
13+
- make ci

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ test: analysis
2121
. venv/bin/activate; \
2222
find tests -type d | xargs nosetests
2323

24+
ci: analysis
25+
flake8 --ignore=E123,E126,E128,E501,W391,W291,W293,F401 tests
26+
flake8 --ignore=F401,W391,W291,W293 twilio --max-line-length=300
27+
find tests -type d | xargs nosetests
28+
2429
cover:
2530
. venv/bin/activate; \
2631
find tests -type d | xargs nosetests --with-coverage --cover-inclusive --cover-erase --cover-package=twilio

0 commit comments

Comments
 (0)
0