Skip to content

Commit 85ae1bc

Browse files
add comments for projects
1 parent 6c649c1 commit 85ae1bc

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

tests/test_bookmarks.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,9 @@ def name(self):
1313

1414
def test_run(self):
1515
# running sync with multiple date timestamps accross different streams due to differences in bookmark values
16-
# Use fixed timestamps for projects so both syncs return records in test data.
17-
projects_start_date_1 = "2026-02-25T00:00:00Z"
18-
projects_start_date_2 = "2026-02-25T05:45:35Z"
19-
# self.run_test(projects_start_date_1, projects_start_date_2, {"projects",})
2016
self.run_test("2023-11-28T00:00:00Z", "2023-11-30T00:00:00Z", {"subtasks",})
2117
# Removing Portfolios as they are only available for users in an Enterprise or Business plan.
18+
# Removing Projects as data is available for the same date only.
2219
self.run_test("2019-01-28T00:00:00Z", "2023-11-30T00:00:00Z", self.expected_streams() - {"subtasks","projects","portfolios"})
2320

2421
def parse_start_date_ts(self, start_date):

tests/test_start_date.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,9 @@ def name(self):
1212

1313
def test_run(self):
1414
# running sync with multiple date timestamps accross different streams due to differences in bookmark values
15-
# Use fixed timestamps for projects so both syncs return records in test data.
16-
projects_start_date_1 = "2026-02-25T00:00:00Z"
17-
projects_start_date_2 = "2026-02-25T05:45:35Z"
18-
# self.run_test(projects_start_date_1, projects_start_date_2, {"projects",})
1915
self.run_test("2023-11-28T00:00:00Z", "2023-11-30T00:00:00Z", {"subtasks",})
2016
# Removing Portfolios as they are only available for users in an Enterprise or Business plan.
17+
# Removing Projects as data is available for the same date only.
2118
self.run_test("2019-01-28T00:00:00Z", "2023-11-30T00:00:00Z", self.expected_streams() - {"subtasks","projects","portfolios"})
2219

2320
def parse_start_date_ts(self, start_date):

0 commit comments

Comments
 (0)