mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
- fixes to tox
This commit is contained in:
parent
93bacd1b87
commit
64f0a27ca1
1 changed files with 11 additions and 2 deletions
13
tox.ini
13
tox.ini
|
@ -1,11 +1,20 @@
|
|||
[tox]
|
||||
envlist = py26,py27,py32
|
||||
|
||||
[testenv]
|
||||
[testenv:py26]
|
||||
setenv = VIRTUAL_ENV={envdir}
|
||||
deps = -r{toxinidir}/requirements.txt
|
||||
unittest2
|
||||
commands = bash -c 'cd tests && python runtests.py'
|
||||
mock
|
||||
commands =
|
||||
bash -c 'cd tests && python runtests.py'
|
||||
|
||||
[testenv:py27]
|
||||
setenv = VIRTUAL_ENV={envdir}
|
||||
deps = -r{toxinidir}/requirements.txt
|
||||
mock
|
||||
commands =
|
||||
bash -c 'cd tests && python runtests.py'
|
||||
|
||||
[testenv:py32]
|
||||
basepython = python3.2
|
||||
|
|
Loading…
Add table
Reference in a new issue