mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 04:57:54 +00:00
42ede22f1e
Our setup.cfg ensures that 'setup.py update_version' happens early enough. And doing it from tox's commands= is too late anyways (because we aren't using Versioneer, so the _version.py file must be updated before tox installs a static copy into the virtualenv). The buildbot's main run-trial-with-tox command has been updated to scan for the 'tahoe --version' output and include the version string in the buildbot results.
32 lines
1.1 KiB
INI
32 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]
|
|
passenv = USERPROFILE HOMEDRIVE HOMEPATH
|
|
setenv =
|
|
PYTHONWARNINGS=default::DeprecationWarnings
|
|
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
|