forked from deluge-torrent/deluge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
182 lines (152 loc) · 4.39 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
# Tox (http://tox.testrun.org/) is a tool for running tests in multiple virtualenvs.
# This configuration file will run the test suite on all supported python versions.
#
# Usage: `pip install tox` and then run `tox` from this directory.
[tox]
envlist = py27, py3, lint, docs
minversion=3.0
[pytest]
# Hide logged warnings and errors in test output.
log_cli_level = CRITICAL
addopts = -p no:warnings --basetemp=_pytest_temp
markers =
todo: Tests that are yet to be written
gtkui: Tests for GTK code
security: Security related tests
slow: Tests that are particularly slow
internet: Tests that require internet connectivity
# =================
# Base dependencies
# =================
[basesetup]
# Minimum pip and setuptools versions to fix system and travis issues.
deps =
pip >= 10
setuptools >= 40
[basetests]
deps =
{[basesetup]deps}
-rrequirements.txt
-rrequirements-tests.txt
[baselint]
deps =
{[basesetup]deps}
-rrequirements-tests.txt
[basedev]
deps =
{[basesetup]deps}
-rrequirements.txt
-rrequirements-dev.txt
-rrequirements-tests.txt
[basedocs]
deps =
{[basesetup]deps}
-rdocs/requirements.txt
# ======================
# Test environment setup
# ======================
[testenv]
install_command = python -m pip install --ignore-installed {opts} {packages}
passenv = DISPLAY PYTHONPATH APPDATA
setenv =
PYTHONPATH = {toxinidir}
PYTEST_ADDOPTS = --verbose --capture=no
sitepackages = True
deps = {[basetests]deps}
commands =
python -VV
python -c "import libtorrent as lt; print(lt.__version__)"
pytest -m "not (todo or gtkui or security)" deluge/tests
# ==========
# Unit tests
# ==========
[testenv:security]
setenv = SECURITY_TESTS = True
commands = pytest -m "security" deluge/tests
[testenv:gtkui]
commands = pytest -m "gtkui" deluge/tests
[testenv:todo]
commands = pytest -m "todo" deluge/tests
[testenv:trial]
setenv = {[testenv]setenv}{:}{toxinidir}/deluge/tests
commands =
python -c "import libtorrent as lt; print(lt.__version__)"
python -m twisted.trial --reporter=deluge-reporter deluge.tests
[testenv:plugins]
setenv = PYTHONPATH = {toxinidir}{:}{toxinidir}/deluge/plugins
commands =
python setup.py build_plugins --develop --install-dir={toxinidir}/deluge/plugins/
pytest -m "not gtkui" deluge/plugins
[testenv:pluginsgtkui]
setenv = PYTHONPATH = {toxinidir}{:}{toxinidir}/deluge/plugins
commands =
python setup.py build_plugins --develop --install-dir={toxinidir}/deluge/plugins/
pytest deluge/plugins
# ============
# Code linting
# ============
# Disable site-packages to avoid using system installed commands.
[testenv:lint]
sitepackages = False
passenv = HOMEPATH SSH_AUTH_SOCK
deps = {[baselint]deps}
commands = pre-commit run --all-files
[testenv:flake8]
sitepackages = False
deps = {[baselint]deps}
commands =
flake8 --version
python -c 'import isort; print(isort.__version__)'
flake8 *.py deluge
[testenv:flake8-complexity]
sitepackages = False
deps = {[baselint]deps}
commands = flake8 --exit-zero --max-complexity 15 deluge
[testenv:pylint]
sitepackages = False
ignore_errors = True
deps = {[baselint]deps}
commands =
pylint --version
pylint deluge
# Use python to enable use of wildcard paths with pylint.
python -m pylint *.py deluge/scripts/*.py
python -m pylint deluge/plugins/*/deluge/
# ========
# Coverage
# ========
[coveragebase]
commands = coverage run --branch --source=deluge -m pytest -m "not todo" deluge/tests
[testenv:coverage]
commands =
{[coveragebase]commands}
coverage html -d docs/build/htmlcoverage
coverage report
# ===================
# Documentation build
# ===================
[testenv:docs]
# Exclude site-packages so local builds have a similar environment to ReadTheDocs.
sitepackages = False
deps = {[basedocs]deps}
commands =
python setup.py clean_docs
sphinx-build -v -j auto -E -b html -d docs/build/doctrees docs/source docs/build/html
sphinx-build -v -j auto -b spelling -d docs/build/doctrees docs/source docs/build/spelling
[testenv:docscoverage]
sitepackages = False
deps =
{[basedocs]deps}
pytest-cov
commands =
sphinx-build -b coverage -d docs/build/doctrees docs/source docs/build/doccoverage
pytest --doctest-glob='*.rst'
# ========================
# Development Environment
# ========================
[testenv:denv]
basepython = python3
envdir = .venv
usedevelop = True
deps = {[basedev]deps}
commands =