forked from qt-creator/qt-creator
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:
@@ -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:
|
||||
|
Reference in New Issue
Block a user