File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -2388,9 +2388,15 @@ def test_issue_2283(function_tmpdir):
2388
2388
2389
2389
@pytest .mark .parametrize ("form" , ["flat" , "list" , "tuple" ])
2390
2390
@pytest .mark .parametrize ("mode" , ["internal" , "external" ])
2391
- def test_issue_2583 (function_tmpdir , form , mode ):
2391
+ @pytest .mark .parametrize ("list_" , ["legacy" , "pandas" ])
2392
+ def test_issue_2583 (function_tmpdir , form , mode , list_ ):
2392
2393
name = "2583"
2393
- sim = flopy .mf6 .MFSimulation (sim_name = name , sim_ws = function_tmpdir , exe_name = "mf6" )
2394
+ sim = flopy .mf6 .MFSimulation (
2395
+ sim_name = name ,
2396
+ sim_ws = function_tmpdir ,
2397
+ exe_name = "mf6" ,
2398
+ use_pandas = list_ == "pandas" ,
2399
+ )
2394
2400
tdis = flopy .mf6 .ModflowTdis (sim )
2395
2401
ims = flopy .mf6 .ModflowIms (sim )
2396
2402
gwf = flopy .mf6 .ModflowGwf (sim , modelname = name , save_flows = True )
You can’t perform that action at this time.
0 commit comments