From d3d4d13bb8f30bb509533308d4b240d4f7996480 Mon Sep 17 00:00:00 2001 From: Prabakaran Kumaresshan Date: Sun, 6 Jan 2019 22:31:19 +0530 Subject: [PATCH] TST/CI: disable hypothesis deadline for test_tick_add_sub in test_ticks.py --- pandas/tests/tseries/offsets/test_ticks.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)