File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 17
17
18
18
def test_xgb2ds (tmpdir ):
19
19
IN_PKL = os .path .join (DATA_PATH , 'xgb.pkl' )
20
- OUT_SAS = os .path .join (tmpdir , 'xgb.sas' )
20
+ OUT_SAS = os .path .join (str ( tmpdir ) , 'xgb.sas' )
21
21
EXPECTED_SAS = os .path .join (DATA_PATH , 'xgb.sas' )
22
22
23
23
pyml2ds (IN_PKL , OUT_SAS )
@@ -28,7 +28,7 @@ def test_xgb2ds(tmpdir):
28
28
29
29
def test_lgb2ds (tmpdir ):
30
30
IN_PKL = os .path .join (DATA_PATH , 'lgb.pkl' )
31
- OUT_SAS = os .path .join (tmpdir , 'lgb.sas' )
31
+ OUT_SAS = os .path .join (str ( tmpdir ) , 'lgb.sas' )
32
32
EXPECTED_SAS = os .path .join (DATA_PATH , 'lgb.sas' )
33
33
34
34
pyml2ds (IN_PKL , OUT_SAS )
@@ -39,7 +39,7 @@ def test_lgb2ds(tmpdir):
39
39
40
40
def test_gbm2ds (tmpdir ):
41
41
IN_PKL = os .path .join (DATA_PATH , 'gbm.pmml' )
42
- OUT_SAS = os .path .join (tmpdir , 'gbm.sas' )
42
+ OUT_SAS = os .path .join (str ( tmpdir ) , 'gbm.sas' )
43
43
EXPECTED_SAS = os .path .join (DATA_PATH , 'gbm.sas' )
44
44
45
45
pyml2ds (IN_PKL , OUT_SAS )
You can’t perform that action at this time.
0 commit comments