Squish: Skip Python projects in tst_create_proj_wizard

Change-Id: I82cd203a17391715428041e64b381379ab34da9e
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
Robert Loehning
2020-01-21 19:21:22 +01:00
parent 1f4d5ff743
commit 5a05c78647

View File

@@ -61,8 +61,8 @@ def main():
for template in dumpItems(templatesView.model(), templatesView.rootIndex()): for template in dumpItems(templatesView.model(), templatesView.rootIndex()):
template = template.replace(".", "\\.") template = template.replace(".", "\\.")
# skip non-configurable # skip non-configurable
if template not in ["Qt Quick UI Prototype", "Auto Test Project", # FIXME if (template not in ["Qt Quick UI Prototype", "Auto Test Project"]
"Qt for Python - Empty", "Qt for Python - Window"]: and "Qt for Python - " not in template): # FIXME
availableProjectTypes.append({category:template}) availableProjectTypes.append({category:template})
safeClickButton("Cancel") safeClickButton("Cancel")
for current in availableProjectTypes: for current in availableProjectTypes: