OP-4180 - change output folder

It should be in `output` subfolder, not in root
This commit is contained in:
Petr Kalis 2022-10-19 12:29:20 +02:00
parent b98e03726d
commit 29ca3f8556
3 changed files with 4 additions and 1 deletions

View file

@ -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",

View file

@ -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",

View file

@ -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: