aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorAymeric Augustin2013-10-16 21:58:11 +0200
committerAymeric Augustin2013-10-17 18:24:57 +0200
commit604499223d6a074141b8901a4fbf53b28fd17126 (patch)
tree77b21fb5792f7a53b254cfbfe60844cebacb9fbd /.travis.yml
parenta295b02cb8c3b8685f6fe7880b9412566ba1d4f6 (diff)
downloaddjango-debug-toolbar-604499223d6a074141b8901a4fbf53b28fd17126.tar.bz2
Add Python 3 to tox configurations.
Tests are obviously failing at this point.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 67b07a4..f1d2e29 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,9 +2,17 @@ language: python
python:
- "2.6"
- "2.7"
+ - "3.2"
+ - "3.3"
env:
- DJANGO_VERSION=1.4.8
- DJANGO_VERSION=1.5.4
+matrix:
+ exclude:
+ - python: "3.2"
+ env: DJANGO_VERSION=1.4.8
+ - python: "3.3"
+ env: DJANGO_VERSION=1.4.8
install:
- pip install Django==$DJANGO_VERSION
script: python setup.py test