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 <robert.loehning@qt.io>
This commit is contained in:
Christian Stenger
2020-02-03 08:28:44 +01:00
parent dae4231e52
commit bae6e3f854

View File

@@ -61,7 +61,7 @@ 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"] if (template not in ["Qt Quick UI Prototype", "Auto Test Project", "Qt Creator Plugin"]
and "Qt for Python - " not in template): # FIXME and "Qt for Python - " not in template): # FIXME
availableProjectTypes.append({category:template}) availableProjectTypes.append({category:template})
safeClickButton("Cancel") safeClickButton("Cancel")