Skip to content

Commit 35357cc

Browse files
committed
ci(bindings/go): include sqlite service into behavior tests
1 parent 2e030d3 commit 35357cc

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/scripts/test_behavior/plan.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,10 +266,9 @@ def generate_language_binding_cases(
266266
if language == "java":
267267
cases = [v for v in cases if v["service"] != "hdfs"]
268268
elif language == "go":
269-
# sqlite: https://github.com/apache/opendal/actions/runs/14443414830/job/40498759995?pr=6018#step:22:243
270269
# hdfs: has problem with ListEmptyDir
271270
# oss: timed out with ListSubDir
272-
cases = [v for v in cases if v["service"] not in ["hdfs", "oss", "sqlite"]]
271+
cases = [v for v in cases if v["service"] not in ["hdfs", "oss"]]
273272

274273
if os.getenv("GITHUB_IS_PUSH") == "true":
275274
return cases

.github/scripts/test_go_binding/generate_test_scheme.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
4747
import (
4848
opendal "github.com/apache/opendal/bindings/go"
49-
"github.com/apache/opendal-go-services/{SERVICE}"
49+
"github.com/apache/opendal-go-services/{SERVICE}"
5050
)
5151
5252
// Add more schemes for behavior tests here.

0 commit comments

Comments
 (0)