diff GenerateConfigurationForTests.py @ 380:b9adc7d06347

update tests following removal of dicom-as-json attachments
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 16 Feb 2021 12:03:27 +0100
parents 79ce0f7a9714
children 227d9a932467
line wrap: on
line diff
--- a/GenerateConfigurationForTests.py	Fri Feb 12 15:52:10 2021 +0100
+++ b/GenerateConfigurationForTests.py	Tue Feb 16 12:03:27 2021 +0100
@@ -44,6 +44,10 @@
                     help = 'Overwrite the file even if it already exists',
                     action = 'store_true')
 
+parser.add_argument('--compression', 
+                    help = 'Enable storage compression',
+                    action = 'store_true')
+
 parser.add_argument('--plugins', 
                     help = 'Add a path to a folder containing plugins')
 
@@ -144,6 +148,7 @@
 config['WebDavEnabled'] = True
 config['WebDavDeleteAllowed'] = True
 config['WebDavUploadAllowed'] = True
+config['StorageCompression'] = args.compression
 
 del config['KeepAlive']