tox.ini
author Rémi Cardona <remi.cardona@logilab.fr>
Thu, 10 Dec 2015 12:34:15 +0100
changeset 10960 9e64fddebc89
parent 10900 d666c9386b58
child 10975 6615ecb60244
permissions -rw-r--r--
merge with 3.21.3 The change in unittest_serverctl.py is needed because of daef7ce08fea (from 3.20.11) and 3914388b2d0f (from the 3.22 branch). Due to both changes, CubicWebTC.config.repository no longer creates a new repository (and thus, a new connection). Since both DBDumpCommand and CubicWebTC.tearDown try to shutdown the repo, tearDown breaks apart. The solution is to temporarily disable ServerConfiguration's config cache. By forcing DBDumpCommand to get a new configuration object, it then gets its own Repo object, allowing tearDown and DBDumpCommand to work independently.

[tox]
env = py27

[testenv]
sitepackages = True
commands = pytest -t {envname}/test {posargs}

[testenv:cubicweb]
deps =
  -r{toxinidir}/test/requirements.txt
commands =
  {envpython} -m pip install --upgrade --no-deps --quiet git+git://github.com/logilab/yapps@master#egg=yapps
  pytest -t test {posargs}

[testenv:dataimport]

[testenv:devtools]
deps =
  -r{toxinidir}/devtools/test/requirements.txt

[testenv:entities]
deps =
  -r{toxinidir}/entities/test/requirements.txt

[testenv:etwist]
deps =
  -r{toxinidir}/etwist/test/requirements.txt

[testenv:ext]
deps =
  -r{toxinidir}/ext/test/requirements.txt

[testenv:hooks]
deps =
  -r{toxinidir}/hooks/test/requirements.txt

[testenv:server]
deps =
  -r{toxinidir}/server/test/requirements.txt

[testenv:sobjects]
deps =
  -r{toxinidir}/sobjects/test/requirements.txt

[testenv:web]
deps =
  -r{toxinidir}/web/test/requirements.txt

[testenv:wsgi]
deps =
  -r{toxinidir}/wsgi/test/requirements.txt

[testenv:doc]
changedir = doc
whitelist_externals =
  sphinx-build
deps =
  sphinx
commands = sphinx-build -b html -d {envtmpdir}/doctrees .  {envtmpdir}/html