We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7ec6bd commit 4d496ccCopy full SHA for 4d496cc
pandas/conftest.py
@@ -9,8 +9,6 @@
9
import pytest
10
from pytz import FixedOffset, utc
11
12
-import pandas.util._test_decorators as td
13
-
14
import pandas as pd
15
from pandas import DataFrame
16
import pandas.util.testing as tm
@@ -381,7 +379,6 @@ def unique_nulls_fixture(request):
381
379
TIMEZONE_IDS = [repr(i) for i in TIMEZONES]
382
380
383
384
-@td.parametrize_fixture_doc(str(TIMEZONE_IDS))
385
@pytest.fixture(params=TIMEZONES, ids=TIMEZONE_IDS)
386
def tz_naive_fixture(request):
387
"""
@@ -390,7 +387,6 @@ def tz_naive_fixture(request):
390
return request.param
391
388
392
389
393
-@td.parametrize_fixture_doc(str(TIMEZONE_IDS[1:]))
394
@pytest.fixture(params=TIMEZONES[1:], ids=TIMEZONE_IDS[1:])
395
def tz_aware_fixture(request):
396
0 commit comments