From e2ec1457c9014c164ed6ec807416c66ae19a5950 Mon Sep 17 00:00:00 2001 From: Petr Kalis Date: Fri, 2 Dec 2022 16:35:04 +0100 Subject: [PATCH] Fix Nuke legacy test Legacy Nuke tests are not cleaning up `renders` folders. Branch with DL version disables Cleanup for now. --- tests/integration/hosts/nuke/lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/hosts/nuke/lib.py b/tests/integration/hosts/nuke/lib.py index 70860b92b3..96daec7427 100644 --- a/tests/integration/hosts/nuke/lib.py +++ b/tests/integration/hosts/nuke/lib.py @@ -57,7 +57,7 @@ class NukeHostFixtures(HostFixtures): @pytest.fixture(scope="module") def skip_compare_folders(self): - yield [] + yield ["renders"] class NukeLocalPublishTestClass(NukeHostFixtures, PublishTest):