forked from openedx/edx-ace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
50 lines (47 loc) · 1.12 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
47
48
49
50
[tox]
envlist = py{38, 312}-django{42}, docs, quality
[testenv]
deps =
setuptools
django42: Django>=4.2,<4.3
-r{toxinidir}/requirements/test.txt
commands =
python -Wd -m pytest {posargs}
[testenv:docs]
setenv =
DJANGO_SETTINGS_MODULE = test_settings
PYTHONPATH = {toxinidir}
allowlist_externals =
make
rm
deps =
setuptools
wheel
-r{toxinidir}/requirements/test.txt
-r{toxinidir}/requirements/doc.txt
commands =
doc8 --ignore-path docs/_build README.rst docs
make -C docs clean
make -C docs html
python setup.py sdist bdist_wheel
twine check dist/*
[testenv:quality]
setenv =
DJANGO_SETTINGS_MODULE=test_settings
PYTHONPATH = {toxinidir}/:{toxinidir}/edx_ace
deps =
setuptools
quality: Django>=4.2,<4.3
-r{toxinidir}/requirements/test.txt
-r{toxinidir}/requirements/quality.txt
allowlist_externals =
make
rm
touch
commands =
touch edx_ace/tests/__init__.py
pylint edx_ace
rm edx_ace/tests/__init__.py
pycodestyle edx_ace
isort --check-only --diff edx_ace manage.py setup.py test_settings.py
make selfcheck