forked from F5Networks/f5-openstack-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
27 lines (22 loc) · 807 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[tox]
setenv = PYTHONDONTWRITEBYTECODE=1
basepython = python2.7
[testenv:style]
deps = -r{toxinidir}/requirements.style.txt
commands = flake8 {toxinidir}/f5_openstack_agent
[testenv:unit]
deps = -r{toxinidir}/requirements.unittest.txt
changedir = f5_openstack_agent
commands = py.test --ignore tests/functional --cov {toxinidir}/f5_openstack_agent {posargs}
[testenv:disconnected_service]
changedir = {toxinidir}/test/functional/neutronless/disconnected_service/
deps = -r{toxinidir}/requirements.functest.txt
commands = py.test {posargs}
[testenv:singlebigip]
changedir = {toxinidir}/test/functional/singlebigip/
deps = -r{toxinidir}/requirements.functest.txt
commands = py.test {posargs}
[testenv:functest]
#recreate = True
deps = -r{toxinidir}/requirements.functest.txt
commands = py.test {posargs}