mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 04:57:54 +00:00
119 lines
4.5 KiB
INI
119 lines
4.5 KiB
INI
# 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. To use it, "pip install tox"
|
|
# and then run "tox" from this directory.
|
|
|
|
[tox]
|
|
envlist = py27
|
|
minversion = 1.7
|
|
|
|
[testenv]
|
|
passenv = TAHOE_LAFS_TRIAL_ARGS USERPROFILE HOMEDRIVE HOMEPATH
|
|
# the default install is non-(--editable), and would displace our -e .[test]
|
|
skip_install = True
|
|
deps = --editable=.[test]
|
|
commands =
|
|
pyflakes src static misc setup.py
|
|
tahoe --version
|
|
trial {env:TAHOE_LAFS_TRIAL_ARGS:--rterrors} {posargs:allmydata}
|
|
|
|
[testenv:integration]
|
|
commands =
|
|
# NOTE: 'run with "py.test --keep-tempdir -s -v integration/" to debug failures'
|
|
py.test -v integration/
|
|
|
|
[testenv:coverage]
|
|
# coverage (with --branch) takes about 65% longer to run
|
|
passenv = TAHOE_LAFS_TRIAL_ARGS USERPROFILE HOMEDRIVE HOMEPATH
|
|
skip_install = True
|
|
deps = --editable=.[test]
|
|
commands =
|
|
pyflakes src static misc setup.py
|
|
tahoe --version
|
|
coverage run --branch -m twisted.trial {env:TAHOE_LAFS_TRIAL_ARGS:--rterrors --reporter=timing} {posargs:allmydata}
|
|
coverage xml
|
|
|
|
[testenv:codechecks]
|
|
passenv = USERPROFILE HOMEDRIVE HOMEPATH
|
|
skip_install = True
|
|
deps = --editable=.[test]
|
|
commands =
|
|
pyflakes src static misc setup.py
|
|
python misc/coding_tools/check-umids.py src
|
|
python misc/coding_tools/check-debugging.py
|
|
python misc/coding_tools/find-trailing-spaces.py -r src static misc setup.py
|
|
python misc/coding_tools/check-miscaptures.py
|
|
# note: check-interfaces.py imports everything, so it must be run
|
|
# from a populated virtualenv
|
|
python misc/coding_tools/check-interfaces.py
|
|
|
|
[testenv:deprecations]
|
|
basepython=python2.7
|
|
passenv = TAHOE_LAFS_TRIAL_ARGS USERPROFILE HOMEDRIVE HOMEPATH
|
|
skip_install = True
|
|
deps = --editable=.[test]
|
|
setenv =
|
|
PYTHONWARNINGS=default::DeprecationWarning
|
|
commands =
|
|
python misc/build_helpers/run-deprecations.py --warnings=_trial_temp/deprecation-warnings.log trial {env:TAHOE_LAFS_TRIAL_ARGS:--rterrors} {posargs:allmydata}
|
|
|
|
[testenv:upcoming-deprecations]
|
|
basepython=python2.7
|
|
passenv = TAHOE_LAFS_TRIAL_ARGS USERPROFILE HOMEDRIVE HOMEPATH
|
|
setenv =
|
|
PYTHONWARNINGS=default::DeprecationWarning
|
|
skip_install = True
|
|
deps =
|
|
--editable=.[test]
|
|
git+https://github.com/twisted/twisted
|
|
git+https://github.com/warner/foolscap
|
|
commands =
|
|
flogtool --version
|
|
python misc/build_helpers/run-deprecations.py --warnings=_trial_temp/deprecation-warnings.log trial {env:TAHOE_LAFS_TRIAL_ARGS:--rterrors} {posargs:allmydata}
|
|
|
|
[testenv:checkmemory]
|
|
commands =
|
|
rm -rf _test_memory
|
|
python src/allmydata/test/check_memory.py upload
|
|
python src/allmydata/test/check_memory.py upload-self
|
|
python src/allmydata/test/check_memory.py upload-POST
|
|
python src/allmydata/test/check_memory.py download
|
|
python src/allmydata/test/check_memory.py download-GET
|
|
python src/allmydata/test/check_memory.py download-GET-slow
|
|
python src/allmydata/test/check_memory.py receive
|
|
|
|
# Use 'tox -e docs' to check formatting and cross-references in docs .rst
|
|
# files. The published docs are built by code run over at readthedocs.org,
|
|
# which does not use this target (but does something similar).
|
|
#
|
|
# If you have "sphinx" installed in your virtualenv, you can just do "make -C
|
|
# docs html", or "cd docs; make html".
|
|
#
|
|
# You can also open docs/_build/html/index.html to see the rendered docs in
|
|
# your web browser.
|
|
|
|
[testenv:docs]
|
|
# we pin docutils because of https://sourceforge.net/p/docutils/bugs/301/
|
|
# which asserts when it reads links to .svg files (e.g. about.rst)
|
|
deps =
|
|
sphinx
|
|
docutils==0.12
|
|
# normal install is not needed for docs, and slows things down
|
|
skip_install = True
|
|
commands =
|
|
sphinx-build -b html -d {toxinidir}/docs/_build/doctrees {toxinidir}/docs {toxinidir}/docs/_build/html
|
|
|
|
[testenv:pyinstaller]
|
|
basepython=python2.7
|
|
# Do not use the '--editable' flag for this testenv as the 'pyinstaller.spec'
|
|
# script called below will need patch the source tree at build-time in order
|
|
# to remove the setuptools requirement from '_auto_deps.py' (and we want to
|
|
# avoid race-conditions when running tests in parallel, e.g., with "detox").
|
|
deps =
|
|
.
|
|
pyinstaller
|
|
# Setting PYTHONHASHSEED to a known value assists with reproducible builds.
|
|
# See https://pyinstaller.readthedocs.io/en/stable/advanced-topics.html#creating-a-reproducible-build
|
|
setenv=PYTHONHASHSEED=1
|
|
commands=pyinstaller -y --clean pyinstaller.spec
|