2016-03-09 05:16:36 +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. To use it, "pip install tox"
|
|
|
|
# and then run "tox" from this directory.
|
|
|
|
|
|
|
|
[tox]
|
|
|
|
envlist = py27
|
|
|
|
|
|
|
|
[testenv]
|
|
|
|
passenv = USERPROFILE HOMEDRIVE HOMEPATH
|
|
|
|
commands =
|
2016-03-18 05:01:33 +00:00
|
|
|
tahoe --version
|
2016-03-16 01:19:54 +00:00
|
|
|
trial --rterrors {posargs:allmydata}
|
2016-03-09 05:16:36 +00:00
|
|
|
|
|
|
|
[testenv:deprecations]
|
2016-03-27 19:05:18 +00:00
|
|
|
basepython=python2.7
|
2016-03-09 05:16:36 +00:00
|
|
|
passenv = USERPROFILE HOMEDRIVE HOMEPATH
|
|
|
|
setenv =
|
|
|
|
PYTHONWARNINGS=default::DeprecationWarnings
|
|
|
|
commands =
|
2016-03-16 01:19:54 +00:00
|
|
|
trial --rterrors {posargs:allmydata}
|
2016-03-09 05:17:51 +00:00
|
|
|
|
|
|
|
[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
|