Merge pull request #11 from msabramo/tox_dummy_within_tox
Use tox to create dummy virtualenv within tox
This commit is contained in:
commit
57b5ae2036
7
tox.ini
7
tox.ini
|
@ -4,13 +4,16 @@
|
||||||
# and then run "tox" from this directory.
|
# and then run "tox" from this directory.
|
||||||
|
|
||||||
[tox]
|
[tox]
|
||||||
envlist = dummy, py26, py27, py32, py33, py34
|
envlist = py26, py27, py32, py33, py34
|
||||||
|
|
||||||
[testenv]
|
[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 =
|
deps =
|
||||||
pytest
|
pytest
|
||||||
pytest-cov
|
pytest-cov
|
||||||
|
whitelist_externals = tox
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Dummy virtualenvs that get created and used by the tests
|
# Dummy virtualenvs that get created and used by the tests
|
||||||
|
|
Loading…
Reference in New Issue