summary refs log tree commit diff
path: root/.travis.yml
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2018-04-30 00:58:31 +0100
committerRichard van der Hoff <richard@matrix.org>2018-04-30 00:58:31 +0100
commitd1d54d60889f94228adff55f64116aa66d07ac3a (patch)
treedf96bc3785c229cf3369238d9f39dcd00db95466 /.travis.yml
parentMerge pull request #3145 from NotAFile/py3-tests (diff)
downloadsynapse-d1d54d60889f94228adff55f64116aa66d07ac3a.tar.xz
add py36 to build matrix
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml18
1 files changed, 13 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index 3ce93cb434..e6ba6f4752 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,14 +1,22 @@
 sudo: false
 language: python
-python: 2.7
 
 # tell travis to cache ~/.cache/pip
 cache: pip
 
-env:
-  - TOX_ENV=packaging
-  - TOX_ENV=pep8
-  - TOX_ENV=py27
+matrix:
+  include:
+  - python: 2.7
+    env: TOX_ENV=packaging
+
+  - python: 2.7
+    env: TOX_ENV=pep8
+
+  - python: 2.7
+    env: TOX_ENV=py27
+    
+  - python: 3.6
+    env: TOX_ENV=py36
 
 install:
   - pip install tox