From 34bec01c9bcb04cfee5d92d89baa1e8bac572a11 Mon Sep 17 00:00:00 2001 From: Unrud Date: Fri, 14 May 2021 00:07:09 +0200 Subject: [PATCH] Fail when test file can't be read --- radicale/tests/helpers.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/radicale/tests/helpers.py b/radicale/tests/helpers.py index 97ae6a70..face22ba 100644 --- a/radicale/tests/helpers.py +++ b/radicale/tests/helpers.py @@ -34,11 +34,8 @@ def get_file_path(file_name): def get_file_content(file_name): - try: - with open(get_file_path(file_name), encoding="utf-8") as fd: - return fd.read() - except IOError: - print("Couldn't open the file %s" % file_name) + with open(get_file_path(file_name), encoding="utf-8") as fd: + return fd.read() def configuration_to_dict(configuration):