Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pandas/tests/tseries/offsets/test_ticks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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)
Expand Down