summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml20
1 files changed, 10 insertions, 10 deletions
diff --git a/.travis.yml b/.travis.yml
index 3443282..a4d0789 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,8 +3,18 @@ language: python
python:
- '2.7'
- '3.5'
+install:
+ - 'pip install -r requirements.txt'
+ - 'pip install -r requirements.test.txt'
+script:
+ - 'py.test --cov=pycco tests/'
+ - 'python -m pycco.main pycco/main.py'
+after_success:
+ - coveralls
matrix:
include:
+ - python: 3.5
+ env: CODESTYLE=true
- python: 2.7
env: TOXENV=py27
install: pip install tox
@@ -13,13 +23,3 @@ matrix:
env: TOXENV=py36
install: pip install tox
script: tox
- - python: 3.5
- env: CODESTYLE=true
-install:
- - 'pip install -r requirements.txt'
- - 'pip install -r requirements.test.txt'
-script:
- - 'py.test --cov=pycco tests/'
- - 'python -m pycco.main pycco/main.py'
-after_success:
- - coveralls