From 97d966c982431338d43428894c4c4be4970e64dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?McCoy=20Pati=C3=B1o?= Date: Thu, 17 Feb 2022 15:14:47 -0800 Subject: [PATCH] Stop fetching HEAD SHA --- tools/azure-sdk-tools/devtools_testutils/proxy_testcase.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/azure-sdk-tools/devtools_testutils/proxy_testcase.py b/tools/azure-sdk-tools/devtools_testutils/proxy_testcase.py index 1c48a7e46d33..e2f9f504bdbf 100644 --- a/tools/azure-sdk-tools/devtools_testutils/proxy_testcase.py +++ b/tools/azure-sdk-tools/devtools_testutils/proxy_testcase.py @@ -87,8 +87,6 @@ def start_record_or_playback(test_id): This returns a tuple, (a, b), where a is the recording ID of the test and b is the `variables` dictionary that maps test variables to values. If no variable dictionary was stored when the test was recorded, b is an empty dictionary. """ - head_commit = subprocess.check_output(["git", "rev-parse", "HEAD"]) - current_sha = head_commit.decode("utf-8").strip() variables = {} # this stores a dictionary of test variable values that could have been stored with a recording if is_live():