forked from django-oscar/django-oscar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
47 lines (41 loc) · 841 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
[tox]
envlist =
py{37,38,39}-django{31,32}
lint
sandbox
docs
[testenv]
commands = coverage run --parallel -m pytest {posargs}
extras = test
pip_pre = true
deps =
django31: django>=3.1,<3.2
django32: django>=3.2,<3.3
[testenv:lint]
basepython = python3.8
deps =
-r{toxinidir}/requirements.txt
allowlist_externals = npm
commands =
npm ci
flake8 src tests setup.py
isort -c -q --diff src/ tests/
npm run eslint
django-admin.py compilemessages
[testenv:sandbox]
basepython = python3.8
deps =
-r{toxinidir}/requirements.txt
django>=3.2,<3.3
allowlist_externals = make
commands =
make build_sandbox
[testenv:docs]
basepython = python3.8
allowlist_externals = make
changedir = {toxinidir}/docs
pip_pre = false
deps =
-r{toxinidir}/docs/requirements.txt
commands =
make html