Skip to content

Commit

Permalink
Scheduling tests should never run on calendar servers that don't supp…
Browse files Browse the repository at this point in the history
…ort scheduling. Updates #439
  • Loading branch information
tobixen committed Oct 27, 2024
1 parent c3cefe9 commit aed78a7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_caldav.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())

Expand Down

0 comments on commit aed78a7

Please sign in to comment.