forked from open-craft/openedx-completion-aggregator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
73 lines (66 loc) · 1.91 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[tox]
envlist = py35-django22,quality,docs
[doc8]
ignore = D001
[pycodestyle]
exclude = .git,.tox,migrations
max-line-length = 120
[pydocstyle]
; D101 = Missing docstring in public class
; D200 = One-line docstring should fit on one line with quotes
; D203 = 1 blank line required before class docstring
; D212 = Multi-line docstring summary should start at the first line
; D417 = Missing argument descriptions in the docstring
ignore = D101,D200,D203,D212,D417
match-dir = (?!migrations)
[pytest]
DJANGO_SETTINGS_MODULE = test_settings
addopts = --cov completion_aggregator --cov-report term-missing --cov-report xml -W error
norecursedirs = .* docs requirements
[testenv]
deps =
django22: Django>=2.2,<2.3
-r{toxinidir}/requirements/test.txt
commands =
py.test --nomigrations {posargs}
passenv =
EDXAGG_MYSQL_HOST
EDXAGG_MYSQL_PORT
EDXAGG_MYSQL_USER
EDXAGG_MYSQL_PASSWORD
[testenv:docs]
basepython = python3.5
setenv =
DJANGO_SETTINGS_MODULE = test_settings
PYTHONPATH = {toxinidir}
whitelist_externals =
make
rm
deps =
-r{toxinidir}/requirements/doc.txt
commands =
doc8 --ignore-path docs/_build README.rst docs
rm -f docs/completion_aggregator.rst
rm -f docs/modules.rst
make -C docs clean
make -C docs html
python setup.py check --restructuredtext --strict
[testenv:quality]
basepython = python3.5
whitelist_externals =
make
rm
touch
deps =
-r{toxinidir}/requirements/doc.txt
-r{toxinidir}/requirements/quality.txt
-r{toxinidir}/requirements/test.txt
commands =
touch tests/__init__.py
pylint completion_aggregator tests test_utils
pylint --py3k completion_aggregator tests test_utils
rm tests/__init__.py
pycodestyle completion_aggregator tests
pydocstyle completion_aggregator tests
isort --check-only --diff --recursive tests test_utils completion_aggregator manage.py setup.py test_settings.py
make selfcheck