summaryrefslogtreecommitdiffstats
path: root/onap-dcae-cbs-docker-client/tox-local.ini
diff options
context:
space:
mode:
authorTommy Carpenter <tommy@research.att.com>2018-03-12 11:29:33 -0400
committerTommy Carpenter <tommy@research.att.com>2018-03-12 11:29:37 -0400
commit426fd9d38a43df7efb46acb38412a76788c43110 (patch)
tree714cd858ce15abf5954ba8923831d33a60bbdd10 /onap-dcae-cbs-docker-client/tox-local.ini
parent7ed337600a48307f368849da028d772f06e387e0 (diff)
PEP8 Compliance
Change-Id: I93935004dabebdb9cb1b917e5f9e462aef46cb40 Issue-ID: DCAEGEN2-348 Signed-off-by: Tommy Carpenter <tommy@research.att.com>
Diffstat (limited to 'onap-dcae-cbs-docker-client/tox-local.ini')
-rw-r--r--onap-dcae-cbs-docker-client/tox-local.ini9
1 files changed, 8 insertions, 1 deletions
diff --git a/onap-dcae-cbs-docker-client/tox-local.ini b/onap-dcae-cbs-docker-client/tox-local.ini
index 244386f..8e48932 100644
--- a/onap-dcae-cbs-docker-client/tox-local.ini
+++ b/onap-dcae-cbs-docker-client/tox-local.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py27,py36
+envlist = py27,py36,flake8
[testenv]
deps=
@@ -11,4 +11,11 @@ setenv =
HOSTNAME = mybestfrienddotcom
commands=pytest --cov {envsitepackagesdir}/onap_dcae_cbs_docker_client --cov-report html
+[testenv:flake8]
+basepython = python3.6
+skip_install = true
+deps = flake8
+commands = flake8 setup.py onap_dcae_cbs_docker_client tests
+[flake8]
+ignore = E501