forked from openedx/xblocks-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
69 lines (61 loc) · 1.5 KB
/
tox.ini
File metadata and controls
69 lines (61 loc) · 1.5 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[tox]
envlist = py{311,312}-django{42,52}, quality, docs
skipsdist = true
[doc8]
; D001 = Line too long
ignore = D001
[pycodestyle]
exclude = .git,.tox,migrations
max-line-length = 120
[pydocstyle]
match-dir = (?!migrations)
[pytest]
DJANGO_SETTINGS_MODULE = xblocks_contrib.test_settings
django_find_project = false
addopts = --cov xblocks_contrib --cov-report term-missing --cov-report xml
norecursedirs = .* docs requirements site-packages
[testenv]
deps =
django42: Django>=4.2,<5.0
django52: Django>=5.2,<6.0
-r{toxinidir}/requirements/test.txt
allowlist_externals =
mkdir
commands =
pip install -e .
mkdir -p var
pytest {posargs} -s
[testenv:docs]
setenv =
PYTHONPATH = {toxinidir}
# Adding the option here instead of as a default in the docs Makefile because that Makefile is generated by shpinx.
SPHINXOPTS = -W
allowlist_externals =
make
rm
deps =
-r{toxinidir}/requirements/doc.txt
commands =
doc8 --ignore-path docs/_build README.rst docs
rm -f docs/xblocks_contrib.rst
rm -f docs/modules.rst
make -e -C docs clean
make -e -C docs html
[testenv:translations]
allowlist_externals =
make
deps =
-r{toxinidir}/requirements/dev.txt
commands =
make validate_translations
[testenv:quality]
allowlist_externals =
make
deps =
-r{toxinidir}/requirements/quality.txt
commands =
pylint xblocks_contrib
pycodestyle xblocks_contrib
pydocstyle xblocks_contrib
isort --check-only --diff xblocks_contrib
make selfcheck