From bbdfe26f26679e87db9628913c3e6c8e8497c2a7 Mon Sep 17 00:00:00 2001 From: Volker Birk Date: Sat, 23 Feb 2019 21:36:25 +0100 Subject: [PATCH] adding inbox --- test/sync_test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/sync_test.py b/test/sync_test.py index 2bff992..c7c3979 100644 --- a/test/sync_test.py +++ b/test/sync_test.py @@ -76,10 +76,12 @@ optParser.add_option("-c", "--clean", action="store_true", dest="clean") (options, args) = optParser.parse_args() if options.clean: + rmrf("TestInbox") rmrf("Alice") rmrf("Bob") else: + os.makedirs("TestInbox", exist_ok=True) setup("Alice") setup("Bob")