tests: Remove ":" from testing results output dir name

Colons in path names is not advisable.

Change-Id: I7748a36cabafde69759f7a9892f7b8910470b85e
This commit is contained in:
Bobby R. Bruce
2023-09-08 10:17:36 -07:00
parent 0337613afc
commit efd58f9b72

View File

@@ -76,7 +76,7 @@ class TempdirFixture(Fixture):
suiteUID = testitem.metadata.uid.suite
testUID = testitem.metadata.name
testing_result_folder = os.path.join(
config.result_path, "SuiteUID:" + suiteUID, "TestUID:" + testUID
config.result_path, "SuiteUID-" + suiteUID, "TestUID-" + testUID
)
# Copy the output files of the run from /tmp to testing-results