Skip to content

Commit 99e61d9

Browse files
committed
update
1 parent b1ed37c commit 99e61d9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

go/codegen/experimental/codegen_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@
1414
package experimental
1515

1616
import (
17-
"fmt"
1817
"testing"
1918

2019
"sqlflow.org/sqlflow/go/database"
2120
pb "sqlflow.org/sqlflow/go/proto"
2221
)
2322

2423
func TestXGBCodegen(t *testing.T) {
24+
t.Skip("enable this test when finished generate code using runtime.feature.*")
25+
2526
sql := "SELECT * FROM iris TO TRAIN xgboost.gbtree WITH objective=\"binary:logistic\",num_class=3 LABEL class INTO sqlflow_models.xgb_classification;"
2627
s := &pb.Session{DbConnStr: database.GetTestingMySQLURL()}
27-
code, err := GenerateCodeCouler(sql, s)
28+
_, err := GenerateCodeCouler(sql, s)
2829
if err != nil {
2930
t.Errorf("error %s", err)
3031
}
31-
fmt.Println(code)
3232
}

0 commit comments

Comments
 (0)