diff options
author | Juha Kosonen <juha.kosonen@nokia.com> | 2017-09-04 15:14:25 +0300 |
---|---|---|
committer | Juha Kosonen <juha.kosonen@nokia.com> | 2017-09-04 15:14:25 +0300 |
commit | fc8a2b28d5ee71290a7c057946b2e72db0f4a39e (patch) | |
tree | 71d259254d3ce40cfc40072237d6801bd54efb66 /functest/opnfv_tests/openstack/tempest | |
parent | 9f0b0675da1b8f4e6edb277492bf6b2f747721b8 (diff) |
Remove get_repo_tag
Not in use after removal of multisite support [1].
[1] https://gerrit.opnfv.org/gerrit/#/c/39569/
Change-Id: I1346c78743690a2e5279d3b1883501dfe19078e3
Signed-off-by: Juha Kosonen <juha.kosonen@nokia.com>
Diffstat (limited to 'functest/opnfv_tests/openstack/tempest')
-rw-r--r-- | functest/opnfv_tests/openstack/tempest/conf_utils.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/functest/opnfv_tests/openstack/tempest/conf_utils.py b/functest/opnfv_tests/openstack/tempest/conf_utils.py index 52fa6003..2cdc2cf6 100644 --- a/functest/opnfv_tests/openstack/tempest/conf_utils.py +++ b/functest/opnfv_tests/openstack/tempest/conf_utils.py @@ -115,17 +115,6 @@ def get_verifier_deployment_dir(verifier_id, deployment_id): 'for-deployment-{}'.format(deployment_id)) -def get_repo_tag(repo): - """ - Returns last tag of current branch - """ - cmd = ("git -C {0} describe --abbrev=0 HEAD".format(repo)) - p = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True) - tag = p.stdout.readline().rstrip() - - return str(tag) - - def backup_tempest_config(conf_file): """ Copy config file to tempest results directory |