Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
tobixen committed Dec 6, 2024
1 parent d8970d2 commit ac5f246
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions check_server_compatibility.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,8 @@ def _check_prop(self, propclass, silly_value, test_value):
def check_event(self):
cal = self._default_calendar

import pdb; pdb.set_trace()

## Two simple events with text fields, dtstart=now and no dtend
obj1 = cal.add_event(
dtstart=datetime.now(),
Expand Down Expand Up @@ -700,6 +702,7 @@ def _do_date_search(self, assert_found=True, has_duration=True, **kwargs):
self.set_flag("vtodo_datesearch_nostart_future_tasks_delivered", True)
assert len(cal.search(end=before, **kwargs)) == 1
else:
import pdb; pdb.set_trace()
assert len(cal.search(end=before, **kwargs)) == 0
assert len(cal.search(start=after, end=longafter)) == 0
assert len(cal.search(start=after, **kwargs)) == 0
Expand Down
2 changes: 1 addition & 1 deletion tests/compatibility_issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@
'fragile_sync_tokens', ## no issue raised yet
'vtodo_datesearch_nodtstart_task_is_skipped', ## no issue raised yet
'broken_expand_on_exceptions', ## no issue raised yet
'date_todo_search_ignores_duration'
'date_todo_search_ignores_duration',
'calendar_color',
'calendar_order',
'vtodo_datesearch_notime_task_is_skipped'
Expand Down

0 comments on commit ac5f246

Please sign in to comment.