summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Rodrigues <medecau@gmail.com>2017-04-15 09:00:00 +0100
committerPedro Rodrigues <medecau@gmail.com>2017-04-15 09:00:00 +0100
commit0881b24639a0a7d3d0ce45563233dbd2a78ccc92 (patch)
treecaf10fc84d30d153b867ea0e6da63540a7040325
parente3fde73f0354e55e27e958edf565e413c5029818 (diff)
downloadpycco-0881b24639a0a7d3d0ce45563233dbd2a78ccc92.tar.gz
adds tox tests to travis
-rw-r--r--.travis.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 62e7c6b..a392149 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,7 +1,20 @@
+sudo: false
language: python
python:
- '2.7'
- '3.5'
+matrix:
+ include:
+ - python: 2.7
+ env: TOXENV=py27
+ install: tox
+ script: tox
+ - python: 3.6
+ env: TOXENV=py36
+ install: tox
+ script: tox
+ - python: 3.5
+ env: CODESTYLE=true
install:
- 'pip install -r requirements.txt'
- 'pip install -r requirements.test.txt'