debian-django-ckeditor/tox.ini

39 lines
676 B
INI

[tox]
envlist=django1.8-py3.4,django1.8-py2.7,django1.7-py2.7,django1.7-py3.4
[testenv]
commands=bash -exc "export DISPLAY=:0;python manage.py test ckeditor_demo"
whitelist_externals=/bin/bash
setenv=DJANGO_SETTINGS_MODULE=ckeditor_demo.settings
deps=
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}