summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2020-02-03 08:28:44 +0100
committerChristian Stenger <christian.stenger@qt.io>2020-02-03 11:34:20 +0000
commitbae6e3f854b98b87d078363cad7c2495fc3bfe10 (patch)
treeccf041e8b712723a5726318e2b959cbf7d5850e7 /tests
parentdae4231e52ad12a90ef36079c155e1e3a5678b6c (diff)
downloadqt-creator-bae6e3f854b98b87d078363cad7c2495fc3bfe10.tar.gz
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>
Diffstat (limited to 'tests')
-rw-r--r--tests/system/suite_general/tst_create_proj_wizard/test.py2
1 files changed, 1 insertions, 1 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 e9037a91d7..ab984d5225 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")