File tree 1 file changed +0
-13
lines changed
pandas/tests/tseries/offsets
1 file changed +0
-13
lines changed Original file line number Diff line number Diff line change 8
8
tests, or when trying to pin down the bugs exposed by the tests below.
9
9
"""
10
10
11
- import zoneinfo
12
-
13
11
from hypothesis import (
14
12
assume ,
15
13
given ,
16
14
)
17
15
import pytest
18
16
19
- from pandas .compat import WASM
20
-
21
17
import pandas as pd
22
18
from pandas ._testing ._hypothesis import (
23
19
DATETIME_JAN_1_1900_OPTIONAL_TZ ,
32
28
@given (DATETIME_JAN_1_1900_OPTIONAL_TZ , YQM_OFFSET )
33
29
def test_on_offset_implementations (dt , offset ):
34
30
assume (not offset .normalize )
35
- # This case is flaky in CI 2024-11-04
36
- assume (
37
- not (
38
- WASM
39
- and isinstance (dt .tzinfo , zoneinfo .ZoneInfo )
40
- and dt .tzinfo .key == "Indian/Cocos"
41
- and isinstance (offset , pd .offsets .MonthBegin )
42
- )
43
- )
44
31
# check that the class-specific implementations of is_on_offset match
45
32
# the general case definition:
46
33
# (dt + offset) - offset == dt
You can’t perform that action at this time.
0 commit comments