From 632cbeecaa2ce91cf04a4d2c2f6242a3a97d2ee0 Mon Sep 17 00:00:00 2001 From: Pascal Roeleven Date: Thu, 2 Mar 2023 14:35:53 +0100 Subject: [PATCH] Don't compress images by default Now that we are writing sparse images, compressing is no longer necessary by default. --- tests_ci/dummy_image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests_ci/dummy_image.py b/tests_ci/dummy_image.py index 453e532..d37cd2c 100755 --- a/tests_ci/dummy_image.py +++ b/tests_ci/dummy_image.py @@ -254,7 +254,7 @@ def parse_args(args=None): base.add_argument( '--compress', action=argparse.BooleanOptionalAction, - default=True, + default=False, help='Compress output file', ) base.add_argument('--db', required=True, help='Path to database file')