forked from doableware/djongo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
36 lines (26 loc) · 739 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
35
# tox (https://tox.readthedocs.io/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist =
django{20, _dev}
[testenv]
basepython =
python3.6
commands =
python tests/precheckin.py
python tests/django_tests/tests/runtests_wrapper.py --settings=settings_test_djongo --failfast --currentlypassing
deps =
django20: Django==2.0
django_dev: Django==2.1.3
[testenv:docs]
deps =
sphinx
whitelist_externals = git
passenv = HOME
commands =
python docs/_build.py
git add .
git commit -am 'Updated docs'
git push origin master