mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-21 22:07:51 +00:00
33 lines
1.1 KiB
INI
33 lines
1.1 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
|
|
|
|
[testenv]
|
|
passenv = USERPROFILE HOMEDRIVE HOMEPATH
|
|
commands =
|
|
tahoe --version
|
|
trial --rterrors {posargs:allmydata}
|
|
|
|
[testenv:deprecations]
|
|
basepython=python2.7
|
|
passenv = USERPROFILE HOMEDRIVE HOMEPATH
|
|
setenv =
|
|
PYTHONWARNINGS=default::DeprecationWarning
|
|
commands =
|
|
trial --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
|