forked from gunthercox/ChatterBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
34 lines (28 loc) · 722 Bytes
/
tox.ini
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
[tox]
skipsdist = True
[testenv]
passenv = DJANGO_SETTINGS_MODULE NLTK_DATA PYTHONPATH HOME DISPLAY
setenv = PYTHONDONTWRITEBYTECODE=1
deps =
django111: Django>=1.11,<1.12
django20: Django>=2.0,<2.1
-rrequirements.txt
-rdev-requirements.txt
[testenv:docs]
commands = sphinx-build -nW -b html ./docs/ {envtmpdir}/build/
[testenv:lint]
deps = flake8
commands = flake8
[testenv:test]
commands =
nosetests
[testenv:django111]
commands =
python setup.py develop --no-deps
python runtests.py
python examples/django_app/manage.py test examples/django_app/
[testenv:django20]
commands =
python setup.py develop --no-deps
python runtests.py
python examples/django_app/manage.py test examples/django_app/