-
Notifications
You must be signed in to change notification settings - Fork 53
/
tox.ini
152 lines (139 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
[tox]
skipsdist = True
envlist =
style
lint
types
cleanup
spell
unit
# Not run by default
# translations
# integration
# ft
# oft
# clean
# bench
#
# All env will use the same envdir as requirements are quite heavy to install.
# This is also preferable to ease dependency upgrades tracking.
#
[base]
deps =
-r tools/deps/requirements-pip.txt
-r tools/deps/requirements-tests.txt
passenv =
DISPLAY
FREEZE_ONLY
GITHUB_HEAD_REF
HOME
JENKINS_URL
NXDRIVE_TEST_NUXEO_URL
NXDRIVE_TEST_PASSWORD
NXDRIVE_TEST_USERNAME
REPORT_PATH
SECOND_PARTITION
SENTRY_DSN
SKIP_SENTRY
USERNAME
WS_DIR
SYSTEM_VERSION_COMPAT
commands =
# Keep dependencies up-to-date
pip-sync tools/deps/requirements-pip.txt tools/deps/requirements-tests.txt
[testenv:bench]
description = Unit benchmarks
envdir = {toxworkdir}/base
deps =
{[base]deps}
-r tools/deps/requirements-bench.txt
commands =
python -m pytest -c tests/benchmarks/empty.ini \
--benchmark-group-by=param \
--benchmark-sort=stddev \
--benchmark-columns=min,max,mean,stddev \
tests/benchmarks
[testenv:clean]
description = Clean-up tests data
envdir = {toxworkdir}/base
passenv = {[base]passenv}
deps = {[base]deps}
commands =
{[base]commands}
python tests/cleanup.py
[testenv:cleanup]
description = Dead code check
envdir = {toxworkdir}/base
deps = {[base]deps}
commands =
{[base]commands}
python -m vulture nxdrive tools/skiplist.py
[testenv:ft]
description = Functional tests
envdir = {toxworkdir}/base
passenv = {[base]passenv}
deps = {[base]deps}
commands =
{[base]commands}
python -m pytest {posargs} tests/functional
[testenv:integration]
description = Integration tests
envdir = {toxworkdir}/base
passenv = {[base]passenv}
deps = {[base]deps}
commands =
{[base]commands}
python -m pytest -n0 {posargs} tests/integration
[testenv:lint]
description = Code quality check
envdir = {toxworkdir}/base
deps = {[base]deps}
commands =
{[base]commands}
python -m flake8 nxdrive
python -m flake8 tests
python -m flake8 tools
[testenv:oft]
description = (old) Functional tests
envdir = {toxworkdir}/base
passenv = {[base]passenv}
deps = {[base]deps}
commands =
{[base]commands}
python -m pytest {posargs} tests/old_functional
[testenv:spell]
description = Grammar check
envdir = {toxworkdir}/base
allowlist_externals = sh
deps = {[base]deps}
commands =
{[base]commands}
sh ./tools/check-spell.sh
[testenv:style]
description = Code style check
envdir = {toxworkdir}/base
deps = {[base]deps}
commands =
{[base]commands}
python -m black --check --diff nxdrive
python -m black --check --diff tests
python -m black --check --diff tools
[testenv:translations]
description = Translation files check
commands = python tools/check_translations.py nxdrive/data/i18n
[testenv:types]
description = Type annotations check
envdir = {toxworkdir}/base
deps = {[base]deps}
commands =
{[base]commands}
python -m mypy --platform win32 nxdrive
[testenv:unit]
description = Unit tests
envdir = {toxworkdir}/base
passenv = {[base]passenv}
deps = {[base]deps}
commands =
{[base]commands}
python -m pytest {posargs} tests/unit --ignore=tests/unit/test_tracing.py
python -m pytest {posargs} tests/unit/test_tracing.py -n0 --cov-append