From 5a05c78647d4207e837e7f558cc624c77446c458 Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Tue, 21 Jan 2020 19:21:22 +0100 Subject: [PATCH] Squish: Skip Python projects in tst_create_proj_wizard Change-Id: I82cd203a17391715428041e64b381379ab34da9e Reviewed-by: Christian Stenger --- tests/system/suite_general/tst_create_proj_wizard/test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 3fdce9645be..e9037a91d7c 100644 --- a/tests/system/suite_general/tst_create_proj_wizard/test.py +++ b/tests/system/suite_general/tst_create_proj_wizard/test.py @@ -61,8 +61,8 @@ 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", # FIXME - "Qt for Python - Empty", "Qt for Python - Window"]: + if (template not in ["Qt Quick UI Prototype", "Auto Test Project"] + and "Qt for Python - " not in template): # FIXME availableProjectTypes.append({category:template}) safeClickButton("Cancel") for current in availableProjectTypes: