summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/end_to_end/__main__.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/end_to_end/__main__.py b/tests/end_to_end/__main__.py
index dbbbe88..c534608 100644
--- a/tests/end_to_end/__main__.py
+++ b/tests/end_to_end/__main__.py
@@ -254,7 +254,10 @@ class BiboumiTest:
with open("test.conf", "w") as fd:
fd.write(confs[scenario.conf])
- os.remove("e2e_test.sqlite")
+ try:
+ os.remove("e2e_test.sqlite")
+ except FileNotFoundError:
+ pass
# Start the XMPP component and biboumi
biboumi = BiboumiRunner(scenario.name, with_valgrind)