2016-04-07 18:11:32 +00:00
|
|
|
# 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.
|
2014-09-21 14:37:29 +00:00
|
|
|
|
|
|
|
[flake8]
|
|
|
|
max-line-length = 120
|
|
|
|
builtins = _,__request__
|
2015-10-20 18:41:47 +00:00
|
|
|
exclude = .git,dist,build
|
|
|
|
|
|
|
|
[pep8]
|
|
|
|
max-line-length = 120
|
|
|
|
ignore = E301,E309
|
2014-09-21 14:37:29 +00:00
|
|
|
|
|
|
|
[tox]
|
2014-10-03 22:14:20 +00:00
|
|
|
envlist = py27, flake8, isort, docs
|
2014-10-09 14:59:45 +00:00
|
|
|
minversion=1.8
|
2014-09-21 14:37:29 +00:00
|
|
|
|
|
|
|
[testenv]
|
2015-07-15 20:17:36 +00:00
|
|
|
passenv = DISPLAY
|
2014-10-03 22:14:20 +00:00
|
|
|
setenv = PYTHONPATH = {env:PWD}:
|
2014-09-25 20:56:15 +00:00
|
|
|
sitepackages = True
|
2014-09-21 14:37:29 +00:00
|
|
|
deps =
|
|
|
|
twisted
|
|
|
|
service_identity
|
|
|
|
mako
|
|
|
|
chardet
|
|
|
|
pyopenssl
|
|
|
|
pyxdg
|
|
|
|
pytest
|
2014-09-25 20:56:15 +00:00
|
|
|
whitelist_externals = py.test
|
|
|
|
commands = {envpython} setup.py test
|
2014-09-21 14:37:29 +00:00
|
|
|
|
|
|
|
[pytest]
|
2014-09-25 20:56:15 +00:00
|
|
|
python_functions = test_
|
|
|
|
norecursedirs = .tox .git dist build
|
2014-09-21 14:37:29 +00:00
|
|
|
pep8maxlinelength = 120
|
2014-09-25 20:56:15 +00:00
|
|
|
whitelist_externals= {[testenv]whitelist_externals}
|
|
|
|
commands = py.test deluge
|
2014-09-21 14:37:29 +00:00
|
|
|
|
2014-10-03 22:14:20 +00:00
|
|
|
|
|
|
|
##############
|
|
|
|
# Unit tests
|
|
|
|
##############
|
2014-09-21 14:37:29 +00:00
|
|
|
|
|
|
|
[testenv:pydef]
|
2014-09-25 20:56:15 +00:00
|
|
|
commands =
|
2014-09-21 14:37:29 +00:00
|
|
|
python -c "import libtorrent as lt; print lt.version"
|
2014-10-13 14:38:51 +00:00
|
|
|
py.test -v -s -m "not (todo or gtkui)" deluge/tests
|
|
|
|
|
|
|
|
[testenv:pygtkui]
|
2016-04-07 18:11:32 +00:00
|
|
|
commands = py.test -v -s -m "gtkui" deluge/tests
|
2014-10-13 14:38:51 +00:00
|
|
|
|
|
|
|
[testenv:todo]
|
2016-04-07 18:11:32 +00:00
|
|
|
commands = py.test -v -s -m "todo" deluge/tests
|
2014-10-13 14:38:51 +00:00
|
|
|
|
|
|
|
[testenv:trial]
|
|
|
|
setenv = {[testenv]setenv}:{env:PWD}/deluge/tests
|
|
|
|
whitelist_externals = trial
|
2016-04-07 18:11:32 +00:00
|
|
|
commands = trial --reporter=deluge-reporter deluge/tests
|
2014-09-21 14:37:29 +00:00
|
|
|
|
2014-09-25 13:25:03 +00:00
|
|
|
[testenv:plugins]
|
2014-09-25 20:56:15 +00:00
|
|
|
commands = py.test deluge/plugins
|
2014-09-21 14:37:29 +00:00
|
|
|
|
|
|
|
[testenv:py26]
|
2014-09-25 20:56:15 +00:00
|
|
|
basepython = python2.6
|
|
|
|
commands = {[testenv:pydef]commands}
|
2014-09-21 14:37:29 +00:00
|
|
|
|
|
|
|
[testenv:py27]
|
2014-09-25 20:56:15 +00:00
|
|
|
basepython = python2.7
|
|
|
|
commands = {[testenv:pydef]commands}
|
2014-09-21 14:37:29 +00:00
|
|
|
|
2014-10-03 22:14:20 +00:00
|
|
|
|
|
|
|
###########################
|
|
|
|
# Code style verification
|
|
|
|
###########################
|
|
|
|
|
2014-09-21 14:37:29 +00:00
|
|
|
[testenv:isort]
|
|
|
|
deps =
|
|
|
|
{[testenv]deps}
|
2015-10-20 23:34:49 +00:00
|
|
|
isort>=4.2.0
|
2014-09-25 20:56:15 +00:00
|
|
|
whitelist_externals =
|
2014-09-21 14:37:29 +00:00
|
|
|
{[testenv]whitelist_externals}
|
|
|
|
isort
|
2015-07-15 20:17:36 +00:00
|
|
|
commands =
|
|
|
|
isort --version
|
2015-09-02 15:07:37 +00:00
|
|
|
python -c "import subprocess, sys; output = subprocess.check_output('isort -q --diff --recursive deluge docs packaging *.py', shell=True); print output; sys.exit(len(output) != 0)"
|
2014-09-21 14:37:29 +00:00
|
|
|
|
|
|
|
[testenv:flake8]
|
2016-01-14 20:18:12 +00:00
|
|
|
# Force flake8 pip install as system flake8 uses hardcoded python path which imports the wrong libraries.
|
|
|
|
install_command = pip -v install --ignore-installed {opts} {packages}
|
2014-09-25 20:56:15 +00:00
|
|
|
setenv = {[testenv]setenv}
|
2014-09-21 14:37:29 +00:00
|
|
|
deps =
|
|
|
|
{[testenv]deps}
|
|
|
|
flake8
|
|
|
|
pep8-naming
|
2016-01-14 20:18:12 +00:00
|
|
|
commands =
|
|
|
|
flake8 --version
|
|
|
|
flake8
|
2014-09-21 14:37:29 +00:00
|
|
|
|
|
|
|
[testenv:flake8-complexity]
|
2014-09-25 20:56:15 +00:00
|
|
|
setenv = {[testenv]setenv}
|
2014-09-21 14:37:29 +00:00
|
|
|
deps =
|
|
|
|
{[testenv:flake8]deps}
|
|
|
|
mccabe
|
2014-09-25 21:58:00 +00:00
|
|
|
commands = flake8 --exit-zero --max-complexity 15 deluge
|
2014-09-21 14:37:29 +00:00
|
|
|
|
2014-10-03 22:14:20 +00:00
|
|
|
|
|
|
|
######################
|
|
|
|
# Unit Test coverage
|
|
|
|
######################
|
|
|
|
|
|
|
|
[testcoveragebase]
|
|
|
|
#install_command = pip install {opts} {packages}
|
|
|
|
deps =
|
|
|
|
{[testenv]deps}
|
|
|
|
pytest-cov
|
|
|
|
coverage
|
|
|
|
whitelist_externals =
|
|
|
|
{[testenv]whitelist_externals}
|
|
|
|
coverage
|
2016-04-07 18:11:32 +00:00
|
|
|
commands = coverage run --branch --source=deluge -m py.test -m "not todo" deluge/tests/
|
2014-10-03 22:14:20 +00:00
|
|
|
|
|
|
|
[testenv:testcoverage]
|
|
|
|
setenv = {[testenv]setenv}
|
2016-04-07 18:11:32 +00:00
|
|
|
deps = {[testcoveragebase]deps}
|
2014-10-03 22:14:20 +00:00
|
|
|
whitelist_externals = {[testcoveragebase]whitelist_externals}
|
|
|
|
commands =
|
|
|
|
{[testcoveragebase]commands}
|
|
|
|
coverage report
|
|
|
|
|
|
|
|
[testenv:testcoverage-html]
|
|
|
|
setenv = {[testenv]setenv}
|
2016-04-07 18:11:32 +00:00
|
|
|
deps = {[testcoveragebase]deps}
|
2014-10-03 22:14:20 +00:00
|
|
|
whitelist_externals = {[testcoveragebase]whitelist_externals}
|
|
|
|
commands =
|
|
|
|
{[testcoveragebase]commands}
|
|
|
|
coverage html -d docs/build/htmlcoverage
|
|
|
|
|
|
|
|
|
|
|
|
######################
|
|
|
|
# Docs generation
|
|
|
|
######################
|
|
|
|
|
2014-09-25 21:12:00 +00:00
|
|
|
# We do not have all dependencies on RTD and travis so we exclude the
|
|
|
|
# site packages (sitepackages=False) when building docs so that local
|
|
|
|
# tests have a similar environment.
|
2014-09-21 14:37:29 +00:00
|
|
|
|
2014-09-25 21:12:00 +00:00
|
|
|
[docsbase]
|
2014-09-25 20:56:15 +00:00
|
|
|
sitepackages = False
|
|
|
|
changedir = docs
|
2014-09-25 22:57:52 +00:00
|
|
|
install_command = pip install {opts} {packages}
|
2014-09-21 14:37:29 +00:00
|
|
|
deps =
|
|
|
|
{[testenv]deps}
|
|
|
|
sphinx
|
|
|
|
sphinxcontrib-napoleon
|
2014-09-25 22:57:52 +00:00
|
|
|
pillow
|
2016-04-07 18:11:32 +00:00
|
|
|
whitelist_externals =
|
|
|
|
{[testenv]whitelist_externals}
|
|
|
|
sphinx-build
|
2014-09-25 20:56:15 +00:00
|
|
|
commands = sphinx-build -E -W -b html -d build/doctrees source build/html
|
2014-09-25 21:12:00 +00:00
|
|
|
|
|
|
|
[testenv:docs]
|
2014-09-25 20:56:15 +00:00
|
|
|
sitepackages = {[docsbase]sitepackages}
|
|
|
|
changedir = {[docsbase]changedir}
|
|
|
|
install_command = {[docsbase]install_command}
|
|
|
|
deps = {[docsbase]deps}
|
2016-04-07 18:11:32 +00:00
|
|
|
whitelist_externals = {[docsbase]whitelist_externals}
|
2014-09-25 20:56:15 +00:00
|
|
|
commands = sphinx-build -v -E -T -b html -d build/doctrees source build/html
|
2014-09-25 21:12:00 +00:00
|
|
|
|
|
|
|
[testenv:docscoverage]
|
2014-09-25 20:56:15 +00:00
|
|
|
sitepackages = {[docsbase]sitepackages}
|
|
|
|
changedir = {[docsbase]changedir}
|
|
|
|
install_command = {[docsbase]install_command}
|
|
|
|
deps =
|
2014-09-25 21:12:00 +00:00
|
|
|
{[docsbase]deps}
|
|
|
|
coverage
|
|
|
|
pytest-cov
|
2016-04-07 18:11:32 +00:00
|
|
|
whitelist_externals =
|
|
|
|
{[docsbase]whitelist_externals}
|
|
|
|
mkdir
|
2014-09-25 20:56:15 +00:00
|
|
|
commands =
|
2014-09-25 21:12:00 +00:00
|
|
|
mkdir -p build/doccoverage
|
|
|
|
sphinx-build -W -b coverage -d build/doctrees source build/doccoverage
|
|
|
|
py.test --doctest-glob='*.rst'
|