From ebfc4aa479a19e7b28765e0cb3f89ea55cd4a316 Mon Sep 17 00:00:00 2001 From: nizam Date: Sun, 23 Oct 2016 23:02:07 +0530 Subject: [PATCH] Don't include openstack/common in flake8 exclude list The directory openstack/common was used to keep codes from oslo-incubator, we have retired oslo-incubator,so don't use this directory any more Change-Id: Iddfa88749f87e65454bfe0c10c7cf5c6301c4f27 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 6e9dd3f..d8866ea 100644 --- a/tox.ini +++ b/tox.ini @@ -30,7 +30,7 @@ commands = {posargs} [flake8] show-source = True -exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build +exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build [testenv:cover] commands = python setup.py test --coverage --testr-args="{posargs}"