feat: compress backups with gzip

This commit is contained in:
link2xt
2024-10-24 22:28:14 +00:00
parent fc2b111f5d
commit 189a093e02
6 changed files with 57 additions and 37 deletions

View File

@@ -61,7 +61,7 @@ def test_qr_securejoin(acfactory, protect, tmp_path):
# Setup second device for Alice
# to test observing securejoin protocol.
alice.export_backup(tmp_path)
files = list(tmp_path.glob("*.tar"))
files = list(tmp_path.glob("*.tar.gz"))
alice2 = acfactory.get_unconfigured_account()
alice2.import_backup(files[0])