Run tox tests against Django 1.8/1.7 and Python 3.4/2.7.

This commit is contained in:
Piotr Maliński 2015-07-07 19:53:31 +02:00
parent 9d1630697e
commit ffcc25f16e
1 changed files with 31 additions and 4 deletions

35
tox.ini
View File

@ -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}