aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Löhning <robert.loehning@qt.io>2024-04-12 22:16:29 +0200
committerRobert Löhning <robert.loehning@qt.io>2024-05-02 20:22:35 +0000
commitb0009782787ebc316a62f1aa0cb48e2eb6f42baa (patch)
tree1ff6799e94d481ad21fbc2ae2dd7e3d4b5a6e5e7
parentcc9ffdb685119a7c11248f08cf88308927252b85 (diff)
SquishTests: Remove dead code
The Qt Quick Application template doesn't allow changing the build system. skipBuildsystemChooser is True above. Change-Id: I413fa6c3b4d97e1f1212dbab96d2a39458ce3751 Reviewed-by: Christian Stenger <christian.stenger@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
-rw-r--r--tests/system/suite_general/tst_create_proj_wizard/test.py7
1 files changed, 2 insertions, 5 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 78178d82bb..176b606b8b 100644
--- a/tests/system/suite_general/tst_create_proj_wizard/test.py
+++ b/tests/system/suite_general/tst_create_proj_wizard/test.py
@@ -113,10 +113,7 @@ def handleBuildSystemVerifyKits(category, template, kits, displayedPlatforms,
return
fixedBuildSystems = list(availableBuildSystems)
- if template == 'Qt Quick Application':
- fixedBuildSystems.remove('qmake')
- test.log("Skipped qmake (not supported).")
- elif template == 'Qt Quick 2 Extension Plugin':
+ if template == 'Qt Quick 2 Extension Plugin':
fixedBuildSystems.remove('Qbs')
test.log("Skipped Qbs (not supported).")
@@ -126,7 +123,7 @@ def handleBuildSystemVerifyKits(category, template, kits, displayedPlatforms,
clickButton(waitForObject(":Next_QPushButton"))
if specialHandlingFunc:
specialHandlingFunc(displayedPlatforms, *args)
- if not ('Plain C' in template or template == 'Qt Quick Application'):
+ if not ('Plain C' in template):
__createProjectHandleTranslationSelection__()
verifyKitCheckboxes(kits, displayedPlatforms)
safeClickButton("Cancel")