Skip to content

Commit 17f7b5a

Browse files
committed
exclude base classes from testing
1 parent 5e5e0c0 commit 17f7b5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/tseries/test_offsets.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4924,7 +4924,7 @@ def test_all_offset_classes(self):
49244924
tick_classes = [x for x in offset_classes if issubclass(x, offsets.Tick)]
49254925

49264926

4927-
@pytest.mark.parametrize('cls', month_classes+tick_classes)
4927+
@pytest.mark.parametrize('cls', month_classes + tick_classes)
49284928
@pytest.mark.parametrize('kwd', _rd_kwds)
49294929
def test_valid_attributes(kwd, cls):
49304930
# check that we cannot create e.g. MonthEnd(weeks=3)

0 commit comments

Comments
 (0)