Skip to content

Commit

Permalink
Merge pull request #6529 from markotoplak/pandas-extend
Browse files Browse the repository at this point in the history
Extend date for ignoring test_time_variable_compatible
  • Loading branch information
markotoplak committed Aug 11, 2023
2 parents 49dc3fd + e8d6983 commit 94b28dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Orange/data/tests/test_pandas.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def test_table_from_frame_date(self):
self.assertEqual(table.domain.variables[0].have_date, 1)

@skipIf(
datetime.today() < datetime(2023, 8, 1),
datetime.today() < datetime(2023, 10, 1),
"Temporarily skipping because of pandas issue",
)
# https://github.com/pandas-dev/pandas/issues/53134#issuecomment-1546011517
Expand Down Expand Up @@ -419,7 +419,7 @@ def testa_table_from_frame_string(self):
self.assertTrue(all(isinstance(v, StringVariable) for v in table.domain.metas))

@skipIf(
datetime.today() < datetime(2023, 8, 1),
datetime.today() < datetime(2023, 10, 1),
"Temporarily skipping because of pandas issue",
)
# https://github.com/pandas-dev/pandas/issues/53134#issuecomment-1546011517
Expand Down

0 comments on commit 94b28dc

Please sign in to comment.