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: