Use tox to create dummy virtualenv within tox

This commit is contained in:
Marc Abramowitz 2014-06-14 12:19:51 -07:00
parent 53aa14377b
commit e405592054
1 changed files with 5 additions and 2 deletions

View File

@ -4,13 +4,16 @@
# and then run "tox" from this directory.
[tox]
envlist = dummy, py26, py27, py32, py33, py34
envlist = py26, py27, py32, py33, py34
[testenv]
commands = py.test {posargs:--cov pipdeptree --cov-report xml --cov-report html --cov-report term-missing tests/}
commands =
tox -e dummy
py.test {posargs:--cov pipdeptree --cov-report xml --cov-report html --cov-report term-missing tests/}
deps =
pytest
pytest-cov
whitelist_externals = tox
# ---------------------------------------------------------------------------
# Dummy virtualenvs that get created and used by the tests