Skip to content

Commit d6be093

Browse files
authored
Fix bug 87 (#142)
* testing something with git * testing something with git - done * Deleting temporary_dir_client at the end of the run. * formatted using poetry run black .
1 parent 704b19d commit d6be093

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

redis_benchmarks_specification/__self_contained_coordinator__/self_contained_coordinator.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -455,6 +455,11 @@ def process_self_contained_coordinator_stream(
455455
temporary_dir
456456
)
457457
)
458+
logging.info(
459+
"Using local temporary dir to persist client output files. Path: {}".format(
460+
temporary_dir_client
461+
)
462+
)
458463
tf_github_org = "redis"
459464
tf_github_repo = "redis"
460465
setup_name = "oss-standalone"
@@ -834,6 +839,12 @@ def process_self_contained_coordinator_stream(
834839
)
835840
pass
836841
shutil.rmtree(temporary_dir, ignore_errors=True)
842+
shutil.rmtree(temporary_dir_client, ignore_errors=True)
843+
logging.info(
844+
"Removing temporary dirs {} and {}".format(
845+
temporary_dir, temporary_dir_client
846+
)
847+
)
837848

838849
overall_result &= test_result
839850

0 commit comments

Comments
 (0)