summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Rodrigues <medecau@gmail.com>2017-04-15 09:40:15 +0100
committerPedro Rodrigues <medecau@gmail.com>2017-04-15 09:40:15 +0100
commit8d274807a2478817bc3f40f1ee3d73660461d7a9 (patch)
tree37ac5d8b4371b0392bd777826d1df4f30e582e49
parent2c2e9fea84014c9006121eb1ba4556b8ac25bb4e (diff)
downloadpycco-8d274807a2478817bc3f40f1ee3d73660461d7a9.tar.gz
moves matrix down in the config file and rearranges the tox section
-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