forked from fiaas/fiaas-deploy-daemon
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
17 lines (16 loc) · 771 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[tox]
envlist = codestyle,test,integration_test
[testenv]
basepython=python2.7
envdir={toxworkdir}/py27
usedevelop=True
deps=.[dev]
setenv =
TMP = {envtmpdir}
PYTHONHASHSEED = 0
passenv =
HOME
commands=
codestyle: flake8 '--format=%(path)-50s: [%(code)s] %(text)s [line:%(row)d, column:%(col)d]' {posargs}
test: py.test -m "not integration_test" -n auto -ra --cov=fiaas_deploy_daemon --cov=minikube --cov-report html --cov-report xml --cov-report term --junit-xml=build/reports/tests.xml --html=build/reports/tests.html --disable-warnings {posargs}
integration_test: py.test -m integration_test -n 2 -ra --junit-xml=build/reports/integration_tests.xml --html=build/reports/integration_tests.html --disable-warnings --use-docker-for-e2e {posargs}