From 29ca3f85566fb321a4bbc531d2a64fda4b2dc989 Mon Sep 17 00:00:00 2001 From: Petr Kalis Date: Wed, 19 Oct 2022 12:29:20 +0200 Subject: [PATCH] OP-4180 - change output folder It should be in `output` subfolder, not in root --- tests/integration/hosts/aftereffects/lib.py | 1 + tests/integration/hosts/maya/lib.py | 1 + tests/lib/testing_classes.py | 3 ++- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/integration/hosts/aftereffects/lib.py b/tests/integration/hosts/aftereffects/lib.py index ca637edba6..0f7513c7d3 100644 --- a/tests/integration/hosts/aftereffects/lib.py +++ b/tests/integration/hosts/aftereffects/lib.py @@ -21,6 +21,7 @@ class AEHostFixtures(HostFixtures): "workfile", "test_project_test_asset_TestTask_v001.aep") dest_folder = os.path.join(download_test_data, + "output", self.PROJECT, self.ASSET, "work", diff --git a/tests/integration/hosts/maya/lib.py b/tests/integration/hosts/maya/lib.py index 6610fac118..a0c5214181 100644 --- a/tests/integration/hosts/maya/lib.py +++ b/tests/integration/hosts/maya/lib.py @@ -21,6 +21,7 @@ class MayaHostFixtures(HostFixtures): "workfile", "test_project_test_asset_TestTask_v001.mb") dest_folder = os.path.join(output_folder_url, + "output", self.PROJECT, self.ASSET, "work", diff --git a/tests/lib/testing_classes.py b/tests/lib/testing_classes.py index 53eeae10cb..f0899e3e18 100644 --- a/tests/lib/testing_classes.py +++ b/tests/lib/testing_classes.py @@ -317,7 +317,7 @@ class PublishTest(ModuleUnitTest): Compares only presence, not size nor content! """ - published_dir_base = output_folder_url + published_dir_base = os.path.join(output_folder_url, "output") expected_dir_base = os.path.join(download_test_data, "expected") @@ -351,6 +351,7 @@ class DeadlinePublishTest(PublishTest): raise ValueError("Timeout reached") metadata_json = glob.glob(os.path.join(download_test_data, + "output", "**/*_metadata.json"), recursive=True) if not metadata_json: