diff --git a/pandas/tests/tseries/offsets/test_ticks.py b/pandas/tests/tseries/offsets/test_ticks.py index a1940241b4c56..dcc7afa797063 100644 --- a/pandas/tests/tseries/offsets/test_ticks.py +++ b/pandas/tests/tseries/offsets/test_ticks.py @@ -4,7 +4,7 @@ """ from datetime import datetime, timedelta -from hypothesis import assume, example, given, strategies as st +from hypothesis import assume, example, given, settings, strategies as st import numpy as np import pytest @@ -38,6 +38,7 @@ def test_delta_to_tick(): @pytest.mark.parametrize('cls', tick_classes) +@settings(deadline=None) # GH 24641 @example(n=2, m=3) @example(n=800, m=300) @example(n=1000, m=5)