From aed78a704c8ecb41d64cf944d33cac2e95fa60fc Mon Sep 17 00:00:00 2001 From: Tobias Brox Date: Sun, 27 Oct 2024 09:09:58 +0100 Subject: [PATCH] Scheduling tests should never run on calendar servers that don't support scheduling. Updates https://github.com/python-caldav/caldav/issues/439 --- tests/test_caldav.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_caldav.py b/tests/test_caldav.py index 281a7b6..601f455 100644 --- a/tests/test_caldav.py +++ b/tests/test_caldav.py @@ -494,6 +494,8 @@ def setup_method(self): self.principals = [] for foo in rfc6638_users: c = client(**foo) + if not c.check_scheduling_support(): + continue ## ignoring user because server does not support scheduling. self.clients.append(c) self.principals.append(c.principal())