Skip to content

Commit 38d824d

Browse files
alimcmaster1Pingviinituutti
authored andcommitted
Increase timeout for flakey test (pandas-dev#23849)
1 parent 458ccab commit 38d824d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/frame/test_apply.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
import warnings
1313
import numpy as np
14-
from hypothesis import given
14+
from hypothesis import given, settings
1515
from hypothesis.strategies import composite, dates, integers, sampled_from
1616

1717
from pandas import (notna, DataFrame, Series, MultiIndex, date_range,
@@ -1157,6 +1157,7 @@ def test_agg_cython_table_raises(self, df, func, expected, axis):
11571157
df.agg(func, axis=axis)
11581158

11591159
@given(index=indices(max_length=5), num_columns=integers(0, 5))
1160+
@settings(deadline=1000)
11601161
def test_frequency_is_original(self, index, num_columns):
11611162
# GH 22150
11621163
original = index.copy()

0 commit comments

Comments
 (0)