|
@@ -20,10 +20,13 @@ from base import TestAutomationBase
|
|
@pytest.mark.parametrize("project", ["AutomatedTesting"])
|
|
@pytest.mark.parametrize("project", ["AutomatedTesting"])
|
|
class TestAutomation(TestAutomationBase):
|
|
class TestAutomation(TestAutomationBase):
|
|
|
|
|
|
|
|
+ use_null_renderer = False # Use default renderer (needs gpu)
|
|
|
|
+ extra_cmdline_args = []
|
|
|
|
+
|
|
def test_C18977329_NvCloth_AddClothSimulationToMesh(self, request, workspace, editor, launcher_platform):
|
|
def test_C18977329_NvCloth_AddClothSimulationToMesh(self, request, workspace, editor, launcher_platform):
|
|
from . import C18977329_NvCloth_AddClothSimulationToMesh as test_module
|
|
from . import C18977329_NvCloth_AddClothSimulationToMesh as test_module
|
|
- self._run_test(request, workspace, editor, test_module)
|
|
|
|
|
|
+ self._run_test(request, workspace, editor, test_module, self.extra_cmdline_args, self.use_null_renderer)
|
|
|
|
|
|
def test_C18977330_NvCloth_AddClothSimulationToActor(self, request, workspace, editor, launcher_platform):
|
|
def test_C18977330_NvCloth_AddClothSimulationToActor(self, request, workspace, editor, launcher_platform):
|
|
from . import C18977330_NvCloth_AddClothSimulationToActor as test_module
|
|
from . import C18977330_NvCloth_AddClothSimulationToActor as test_module
|
|
- self._run_test(request, workspace, editor, test_module)
|
|
|
|
|
|
+ self._run_test(request, workspace, editor, test_module, self.extra_cmdline_args, self.use_null_renderer)
|