forked from openedx/edx-enterprise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
105 lines (93 loc) · 3.34 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[tox]
envlist = {py27,py36}-master
[doc8]
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)
[pytest]
DJANGO_SETTINGS_MODULE = enterprise.settings.test
addopts = --cov enterprise --cov enterprise_learner_portal --cov consent --cov integrated_channels --cov-report term-missing --cov-report xml
norecursedirs = .* docs requirements node_modules
[isort]
line_length = 120
known_edx =
known_django = django
known_djangoapp = model_utils
known_first_party = consent,enterprise,enterprise_learner_portal,integrated_channels
include_trailing_comma = true
multi_line_output = 3
sections = FUTURE,STDLIB,THIRDPARTY,DJANGO,DJANGOAPP,EDX,FIRSTPARTY,LOCALFOLDER
[wheel]
universal = 1
[testenv]
deps =
master: -r{toxinidir}/requirements/test.txt
commands =
py.test -Wd {posargs}
[testenv:docs]
setenv =
DJANGO_SETTINGS_MODULE = enterprise.settings.test
PYTHONPATH = {toxinidir}
whitelist_externals =
make
rm
deps =
-r{toxinidir}/requirements/doc.txt
commands =
doc8 --ignore-path docs/_build README.rst docs
rm -f docs/enterprise.rst
rm -f docs/modules.rst
make -C docs clean
make -C docs html
python setup.py check --restructuredtext --strict
[testenv:isort]
deps =
-r{toxinidir}/requirements/dev.txt
commands =
isort --recursive tests test_utils enterprise enterprise_learner_portal consent integrated_channels manage.py setup.py
[testenv:isort-check]
deps =
-r{toxinidir}/requirements/dev.txt
commands =
isort --check-only --recursive tests test_utils enterprise enterprise_learner_portal consent integrated_channels manage.py setup.py
[testenv:quality]
whitelist_externals =
make
rm
touch
deps =
-r{toxinidir}/requirements/dev.txt
commands =
touch tests/__init__.py
pylint -j 0 enterprise enterprise_learner_portal consent integrated_channels tests test_utils requirements/check_pins.py
pylint -j 0 --py3k enterprise enterprise_learner_portal consent integrated_channels tests test_utils
rm tests/__init__.py
pycodestyle enterprise enterprise_learner_portal consent integrated_channels tests test_utils
pydocstyle enterprise enterprise_learner_portal consent integrated_channels tests test_utils
isort --check-only --recursive tests test_utils enterprise enterprise_learner_portal consent integrated_channels manage.py setup.py
[testenv:jasmine]
passenv = JASMINE_BROWSER DISPLAY
deps =
Django<2.0
-r{toxinidir}/requirements/js_test.txt
commands =
jasmine-ci
[testenv:pii-annotations]
setenv =
DJANGO_SETTINGS_MODULE = enterprise.settings.test
deps =
-r{toxinidir}/requirements/test.txt
commands =
code_annotations django_find_annotations --config_file .pii_annotations.yml --lint --report --coverage