Skip converting projects under tests/auto/installed_cmake

Change-Id: Id26320fb55f7f0ae4b18726b0794a4a1f169c80f
Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
This commit is contained in:
Alexandru Croitor 2019-09-21 17:41:20 +02:00
parent cfa3c64625
commit 900df48122

View File

@ -3177,6 +3177,8 @@ def should_convert_project(project_file_path: str = "") -> bool:
# Skip cmake auto tests, they should not be converted.
if project_relative_path.startswith("tests/auto/cmake"):
return False
if project_relative_path.startswith("tests/auto/installed_cmake"):
return False
# Skip qmake testdata projects.
if project_relative_path.startswith("tests/auto/tools/qmake/testdata"):