From 8d274807a2478817bc3f40f1ee3d73660461d7a9 Mon Sep 17 00:00:00 2001 From: Pedro Rodrigues Date: Sat, 15 Apr 2017 09:40:15 +0100 Subject: moves matrix down in the config file and rearranges the tox section --- .travis.yml | 20 ++++++++++---------- 1 file 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 -- cgit v1.2.1