Skip to content

Commit ecb599f

Browse files
authored
CI/TST: Set deadline=None for flaky hypothesis test (#45118)
1 parent e72027d commit ecb599f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/tests/tseries/offsets/test_offsets_properties.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
from hypothesis import (
1111
assume,
1212
given,
13+
settings,
1314
)
1415
import pytest
1516
import pytz
@@ -45,6 +46,7 @@ def test_on_offset_implementations(dt, offset):
4546

4647

4748
@given(YQM_OFFSET)
49+
@settings(deadline=None) # GH 45118
4850
def test_shift_across_dst(offset):
4951
# GH#18319 check that 1) timezone is correctly normalized and
5052
# 2) that hour is not incorrectly changed by this normalization

0 commit comments

Comments
 (0)