Skip to content

Commit 2363698

Browse files
committed
Docstring fixup
1 parent be17727 commit 2363698

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pandas/tests/io/test_excel.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ def tsframe():
3939

4040
@pytest.fixture(params=[True, False])
4141
def merge_cells(request):
42+
"""Provides valid values for ``merge_cells`` parameter."""
4243
return request.param
4344

4445

@@ -60,7 +61,6 @@ def ignore_xlrd_time_clock_warning():
6061
class TestReaders:
6162

6263
@pytest.fixture(autouse=True, params=[
63-
# Add any engines to test here
6464
pytest.param('xlrd', marks=pytest.mark.skipif(
6565
not td.safe_import("xlrd"), reason="no xlrd")),
6666
pytest.param(None, marks=pytest.mark.skipif(
@@ -69,6 +69,8 @@ class TestReaders:
6969
def cd_and_set_engine(self, request, datapath, monkeypatch):
7070
"""
7171
Change directory and set engine for read_excel calls.
72+
73+
Add any engines to test to fixture here.
7274
"""
7375
func = partial(pd.read_excel, engine=request.param)
7476
monkeypatch.chdir(datapath("io", "data"))

0 commit comments

Comments
 (0)