-
Notifications
You must be signed in to change notification settings - Fork 63
/
tox.ini
48 lines (46 loc) · 881 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
36
37
38
39
40
41
42
43
44
45
46
47
48
[tox]
envlist =
py{38,39,310}-dj{41,42}
py{310,311}-dj{41,42,main}
py{312}-dj{42,50,51,main}
docs
[testenv]
usedevelop = true
deps =
dj41: Django>=4.1,<4.2
dj42: Django>=4.2,<5.0
dj50: Django>=5.0,<5.1
dj51: Django>=5.1,<5.2
djmain: https://github.com/django/django/archive/main.tar.gz
simplejson
openpyxl
reportlab
pdfdocument
django-countries
xlsxdocument
coverage
changedir = {toxinidir}
skip_install = true
commands =
coverage run tests/manage.py test -v 2 {posargs:testapp}
coverage html
[testenv:docs]
deps =
Sphinx
sphinx-rtd-theme
Django<4
simplejson
openpyxl
reportlab
pdfdocument
django-countries
xlsxdocument
billogram_api
payson_api
stripe
pytz
coverage
changedir = docs
commands = make html
skip_install = true
whitelist_externals = make