Add Django 1.7 to the build matrix

This commit is contained in:
Ryan Hiebert 2015-06-16 00:50:20 -06:00
parent 69ea93fd4e
commit f435762773

View file

@ -1,8 +1,15 @@
[tox]
envlist = py{27,33,34}
envlist = py{27,33,34}-django{17,18}
[tox:travis]
2.7 = py27-django{17,18}
3.3 = py33-django{17,18}
3.4 = py34-django{17,18}
[testenv]
deps =
pytest
pytest-xdist
django17: Django>=1.7,<1.8
django18: Django>=1.8,<1.9
commands = py.test {posargs}