Skip to content

Commit

Permalink
Extend date for ignoring test_time_variable_compatible
Browse files Browse the repository at this point in the history
Pandas already fixed the problem in master so we need to just wait a
bit.
  • Loading branch information
markotoplak committed Aug 11, 2023
1 parent 49dc3fd commit 6d5a399
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Orange/data/tests/test_pandas.py
Original file line number Diff line number Diff line change
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 6d5a399

Please sign in to comment.