From c5088e0e2cce3af34b10a1a6ce1e8c4eda0eb368 Mon Sep 17 00:00:00 2001 From: Houkime <> Date: Mon, 3 Jul 2023 13:29:31 +0000 Subject: [PATCH] test(backups): remove the 100mb file after test --- tests/test_graphql/test_backup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_graphql/test_backup.py b/tests/test_graphql/test_backup.py index e269cf1..337ef86 100644 --- a/tests/test_graphql/test_backup.py +++ b/tests/test_graphql/test_backup.py @@ -325,6 +325,8 @@ def test_backup_larger_file(backups, dummy_service): updates = job_progress_updates(job_type_id) assert len(updates) > 3 assert updates[int((len(updates) - 1) / 2.0)] > 10 + #clean up a bit + remove(dir) def test_restore_snapshot_task(backups, dummy_service):