forked from django/django-localflavor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
46 lines (43 loc) · 1.09 KB
/
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
[tox]
args_are_paths = false
envlist =
docs,prospector
{py37,py38,pypy3}-2.2
{py36,py37,py38,pypy3}-3.0
{py36,py37,py38,pypy3}-3.1
{py36,py37,py38,py39,py310,pypy3}-3.2
{py38,py39,py310,pypy3}-django40
{py38,py39,py310,pypy3}-main
[testenv]
basepython =
py37: python3.7
py38: python3.8
py39: python3.9
py310: python3.10
pypy3: pypy3
usedevelop = true
pip_pre = true
commands =
invoke test {posargs}
deps =
django-22: Django>=2.2,<2.3
django-30: Django>=3.0,<3.1
django-31: Django>=3.1,<3.2
django-32: Django>=3.2,<3.3
django-40: Django>=4.0a1,<4.1
django-main: https://github.com/django/django/archive/main.tar.gz
-r{toxinidir}/tests/requirements.txt
[testenv:docs]
deps =
Sphinx>=1.3
-r{toxinidir}/docs/requirements.txt
basepython = python3.9
commands =
sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
[testenv:prospector]
deps =
prospector==1.3.0
pylint>=2.5.2,<2.6.0
-r{toxinidir}/tests/requirements.txt
basepython = python3.8
commands = prospector --profile .prospector.yaml {toxinidir}