Browse Source

Skip the AppImage test

Contributes CURA-10951
Jelle Spijker 1 year ago
parent
commit
c29fcd7dce
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packaging/AppImage-builder/create_appimage.py

+ 1 - 1
packaging/AppImage-builder/create_appimage.py

@@ -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}")