forked from openedx/edx-enterprise-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
73 lines (63 loc) · 2.2 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 = {data,reporting}
[wheel]
universal = 1
[doc8]
max-line-length = 120
[pep8]
ignore = E266
[pycodestyle]
exclude = .git,.tox,migrations,settings
max-line-length = 120
[pydocstyle]
; D101 = Missing docstring in public class
; D106 = Missing docstring in public nested 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
; D213 = Multi-line docstring summary should start at the second line
; D406 = Section name should end with a newline
; D407 = Missing dashed underline after section
; D411 = Missing blank line before section
; D412 = No blank lines allowed between a section header and its content
; D413 = Missing blank line after last section
ignore = D101,D106,D200,D203,D212,D213,D406,D407,D411,D412,D413
match-dir = (?!migrations)
[isort]
line_length = 120
known_edx =
known_django = django
known_djangoapp = model_utils
known_first_party = enterprise_data,enterprise_reporting, enterprise_data_roles
include_trailing_comma = true
multi_line_output = 3
sections = FUTURE,STDLIB,THIRDPARTY,DJANGO,DJANGOAPP,EDX,FIRSTPARTY,LOCALFOLDER
[pytest]
DJANGO_SETTINGS_MODULE = enterprise_data.settings.test
addopts = --cov enterprise_reporting --cov enterprise_data --cov enterprise_data_roles --cov-report term-missing --cov-report xml
norecursedirs = .* docs requirements node_modules
[testenv:data]
deps =
-r{toxinidir}/requirements/test-master.txt
commands =
py.test -Wd {posargs}
[testenv:reporting]
deps =
-r{toxinidir}/requirements/test-reporting.txt
commands =
pytest -Wd --cov enterprise_reporting --cov-report term-missing --cov-report xml enterprise_reporting/tests
[testenv:quality]
whitelist_externals =
make
rm
touch
deps =
-r{toxinidir}/requirements/quality.txt
commands =
isort --check-only --recursive enterprise_data enterprise_data_roles manage.py setup.py
touch tests/__init__.py
pylint -j 0 enterprise_data enterprise_data_roles
pylint -j 0 --py3k enterprise_data enterprise_data_roles
rm tests/__init__.py
pycodestyle enterprise_data enterprise_data_roles
pydocstyle enterprise_data enterprise_data_roles