forked from django-ckeditor/django-ckeditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
38 lines (29 loc) · 676 Bytes
/
tox.ini
File metadata and controls
38 lines (29 loc) · 676 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[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}