From 76e0c09f344f7acf8704440faebf0ea73af1e20c Mon Sep 17 00:00:00 2001 From: SamYaple Date: Sun, 20 Mar 2016 23:28:26 +0000 Subject: [PATCH] Allow version_check to work on local git repo Same method we use for build.py TrivialFix Change-Id: Ib2a7bbfb8349c473e6fdbacbba239985b05ec0bd --- tools/version_check.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tools/version_check.py b/tools/version_check.py index 99fb167122..109dc0771a 100755 --- a/tools/version_check.py +++ b/tools/version_check.py @@ -13,6 +13,7 @@ # limitations under the License. import collections +import os import re import sys @@ -21,6 +22,15 @@ from oslo_config import cfg import pkg_resources import requests +PROJECT_ROOT = os.path.abspath(os.path.join( + os.path.dirname(os.path.realpath(__file__)), '..')) + +# NOTE(SamYaple): Update the search patch to prefer PROJECT_ROOT as the source +# of packages to import if we are using local tools/build.py +# instead of pip installed kolla-build tool +if PROJECT_ROOT not in sys.path: + sys.path.insert(0, PROJECT_ROOT) + from kolla.common import config as common_config