Merge pull request #11 from msabramo/tox_dummy_within_tox

Use tox to create dummy virtualenv within tox
This commit is contained in:
Vineet Naik 2014-06-16 22:03:47 +05:30
commit 57b5ae2036
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