8000 Use make test target for travis ci · robscc/twilio-python@590a808 · GitHub
[go: up one dir, main page]

Skip to content

Commit 590a808

Browse files
committed
Use make test target for travis ci
1 parent 293be16 commit 590a808

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

.travis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ python:
55
- "3.3"
66
- "3.4"
77
install:
8-
- pip install .
9-
- pip install -r requirements.txt
10-
- pip install -r tests/requirements.txt
8+
- make install
9+
- make test-install
1110
script:
12-
- make ci
11+
- make test

Makefile

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

24-
ci:
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-
2924
cover:
3025
. venv/bin/activate; \
3126
find tests -type d | xargs nosetests --with-coverage --cover-inclusive --cover-erase --cover-package=twilio

0 commit comments

Comments
 (0)
0