From bae6e3f854b98b87d078363cad7c2495fc3bfe10 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Mon, 3 Feb 2020 08:28:44 +0100 Subject: [PATCH] Squish: Fix test for project wizard Skip Qt Creator Plugin template as it needs special handling on the details page. Change-Id: If2fbba31435d280bd99d78a929dfd057ea26feab Reviewed-by: Robert Loehning --- tests/system/suite_general/tst_create_proj_wizard/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system/suite_general/tst_create_proj_wizard/test.py b/tests/system/suite_general/tst_create_proj_wizard/test.py index e9037a91d7c..ab984d52257 100644 --- a/tests/system/suite_general/tst_create_proj_wizard/test.py +++ b/tests/system/suite_general/tst_create_proj_wizard/test.py @@ -61,7 +61,7 @@ def main(): for template in dumpItems(templatesView.model(), templatesView.rootIndex()): template = template.replace(".", "\\.") # skip non-configurable - if (template not in ["Qt Quick UI Prototype", "Auto Test Project"] + if (template not in ["Qt Quick UI Prototype", "Auto Test Project", "Qt Creator Plugin"] and "Qt for Python - " not in template): # FIXME availableProjectTypes.append({category:template}) safeClickButton("Cancel")