Skip the AppImage test

Contributes CURA-10951
This commit is contained in:
Jelle Spijker 2023-09-05 07:24:14 +02:00
parent 05cf1c9ad6
commit c29fcd7dce
No known key found for this signature in database
GPG Key ID: 034D1C0527888B65

View File

@ -79,7 +79,7 @@ def copy_files(dist_path):
def create_appimage():
appimagetool = os.getenv("APPIMAGEBUILDER_LOCATION", "appimage-builder-x86_64.AppImage")
command = [appimagetool, "--recipe", os.path.join(Path(__file__).parent, "AppImageBuilder.yml")]
command = [appimagetool, "--recipe", os.path.join(Path(__file__).parent, "AppImageBuilder.yml"), "--skip-test"]
result = subprocess.call(command)
if result != 0:
raise RuntimeError(f"The AppImageTool command returned non-zero: {result}")