diff --git a/tox.ini b/tox.ini index 6e25739..fb37e8f 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,38 @@ [tox] -envlist=py27,py34 +envlist=django1.8-py3.4,django1.8-py2.7,django1.7-py2.7,django1.7-py3.4 [testenv] commands=bash -exc "python manage.py test ckeditor_demo" whitelist_externals=/bin/bash setenv=DJANGO_SETTINGS_MODULE=ckeditor_demo.settings deps= - Django==1.7.1 - Pillow==2.5.3 - selenium==2.42.1 + Pillow==2.9.0 + selenium==2.46.0 + + +[testenv:django1.8-py3.4] +basepython = python3.4 +deps = + Django==1.8.2 + {[testenv]deps} + + +[testenv:django1.8-py2.7] +basepython = python2.7 +deps = + Django==1.8.2 + {[testenv]deps} + + +[testenv:django1.7-py2.7] +basepython = python2.7 +deps = + Django==1.7.8 + {[testenv]deps} + + +[testenv:django1.7-py3.4] +basepython = python3.4 +deps = + Django==1.7.8 + {[testenv]deps}