Use oslo.config-1.1.0b1
The cfg API is now available via the oslo-config library, so switch to
it and remove the copied-and-pasted version.
Add the oslo.config-1.1.0b1 tarball to tools/pip-requires - this will
be changed to 'oslo-config>=2013.1' when oslo-config is published to
pypi. This will happen in time for grizzly final.
Remove the 'deps = pep8==1.3.3' from tox.ini as it means all the other
deps get installed with easy_install which can't install oslo-config
from the URL.
Change-Id: Ie803935d5f1b4fb88e76932cc42ce22b45acffad
diff --git a/tools/pip-requires b/tools/pip-requires
index 220f1a6..ee21065 100644
--- a/tools/pip-requires
+++ b/tools/pip-requires
@@ -13,3 +13,5 @@
testresources
keyring
testrepository
+
+http://tarballs.openstack.org/oslo-config/oslo.config-1.1.0b1.tar.gz#egg=oslo.config
diff --git a/tools/tempest_coverage.py b/tools/tempest_coverage.py
index 267eafa..a46d0fb 100755
--- a/tools/tempest_coverage.py
+++ b/tools/tempest_coverage.py
@@ -20,9 +20,10 @@
import shutil
import sys
+from oslo.config import cfg
+
from tempest.common.rest_client import RestClient
from tempest import config
-from tempest.openstack.common import cfg
from tempest.tests.compute import base
CONF = config.TempestConfig()