Revert "Revert "oran-shell-release: release image for F""
[pti/rtp.git] / meta-starlingx / meta-stx-integ / recipes-devtools / python / files / python-keystone / keystone-remove-git-commands-in-tests.patch
1 From d2ee135a3c97f714e6da59adf45a91a2f1632057 Mon Sep 17 00:00:00 2001
2 From: Keith Holman <Keith.Holman@windriver.com>
3 Date: Wed, 4 Jun 2014 11:30:53 -0400
4 Subject: [PATCH] keystone: remove git commands in tests
5
6 Keystone tests are designed to be used during development
7 and will use git to download the latest keystoneclient from
8 source to test against.  However, on the system installation
9 we install keystone-client as a separate package, and do not
10 want to download an external version to test.  In order to
11 test against the version installed as a separate package,
12 remove the git calls that clone the keystone-client repository
13 and just returned the desired directory.
14
15 Signed-off-by: Keith Holman <Keith.Holman@windriver.com>
16 ---
17  keystone/tests/core.py | 2 ++
18  1 file changed, 2 insertions(+)
19
20 Index: git/keystone/tests/core.py
21 ===================================================================
22 --- git.orig/keystone/tests/core.py
23 +++ git/keystone/tests/core.py
24 @@ -125,6 +125,7 @@
25  
26      working_dir = os.getcwd()
27      revdir = os.path.join(VENDOR, '%s-%s' % (name, rev.replace('/', '_')))
28 +    """
29      modcheck = os.path.join(VENDOR, '.%s-%s' % (name, rev.replace('/', '_')))
30      try:
31          if os.path.exists(modcheck):
32 @@ -145,6 +146,7 @@
33              fd.write('1')
34      except environment.subprocess.CalledProcessError:
35          LOG.warning(_('Failed to checkout %s'), repo)
36 +    """
37      os.chdir(working_dir)
38      return revdir
39