File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ def tsframe():
39
39
40
40
@pytest .fixture (params = [True , False ])
41
41
def merge_cells (request ):
42
+ """Provides valid values for ``merge_cells`` parameter."""
42
43
return request .param
43
44
44
45
@@ -60,7 +61,6 @@ def ignore_xlrd_time_clock_warning():
60
61
class TestReaders :
61
62
62
63
@pytest .fixture (autouse = True , params = [
63
- # Add any engines to test here
64
64
pytest .param ('xlrd' , marks = pytest .mark .skipif (
65
65
not td .safe_import ("xlrd" ), reason = "no xlrd" )),
66
66
pytest .param (None , marks = pytest .mark .skipif (
@@ -69,6 +69,8 @@ class TestReaders:
69
69
def cd_and_set_engine (self , request , datapath , monkeypatch ):
70
70
"""
71
71
Change directory and set engine for read_excel calls.
72
+
73
+ Add any engines to test to fixture here.
72
74
"""
73
75
func = partial (pd .read_excel , engine = request .param )
74
76
monkeypatch .chdir (datapath ("io" , "data" ))
You can’t perform that action at this time.
0 commit comments