forked from ambition-study/ambition
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
35 lines (32 loc) · 788 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]
envlist =
py37-django22
py37-djangotrunk
[testenv:docs]
changedir = docs
deps =
Sphinx
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
[testenv]
passenv = TOXENV CI TRAVIS TRAVIS_* CODECOV_*
setenv =
PYTHONWARNINGS=module::DeprecationWarning
commands =
pip freeze
flake8 ambition_edc
pip install -U git+https://github.com/erikvw/django-simple-history@admin_revert_permissions
coverage run runtests.py {posargs}
codecov -e TOXENV
deps =
-rrequirements.txt
-rrequirements.tests.txt
edc-test-utils
coverage
codecov>=1.4.0
flake8
django22: Django>=2.2,<2.3
djangotrunk: https://github.com/django/django/tarball/master
[travis]
python =
3.7: py37-django22
3.7: py37-djangotrunk