Skip to content

Commit 13b9237

Browse files
nixphixPingviinituutti
authored andcommitted
TST/CI: disable hypothesis deadline for test_tick_add_sub in test_ticks.py (pandas-dev#24654)
1 parent 129bb97 commit 13b9237

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/tseries/offsets/test_ticks.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"""
55
from datetime import datetime, timedelta
66

7-
from hypothesis import assume, example, given, strategies as st
7+
from hypothesis import assume, example, given, settings, strategies as st
88
import numpy as np
99
import pytest
1010

@@ -38,6 +38,7 @@ def test_delta_to_tick():
3838

3939

4040
@pytest.mark.parametrize('cls', tick_classes)
41+
@settings(deadline=None) # GH 24641
4142
@example(n=2, m=3)
4243
@example(n=800, m=300)
4344
@example(n=1000, m=5)

0 commit comments

Comments
 (0)