This is an automated email from the ASF dual-hosted git repository. yuchanns pushed a commit to branch ci-bindings-go-sqlite in repository https://gitbox.apache.org/repos/asf/opendal.git
commit 01f57ce27474cf2a74e186ede3a71e6afcf34734 Author: Hanchin Hsieh <[email protected]> AuthorDate: Thu Apr 17 09:58:44 2025 +0800 ci(bindings/go): include sqlite service into behavior tests --- .github/scripts/test_behavior/plan.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/scripts/test_behavior/plan.py b/.github/scripts/test_behavior/plan.py index 8f3247327..1d1c0afed 100755 --- a/.github/scripts/test_behavior/plan.py +++ b/.github/scripts/test_behavior/plan.py @@ -266,10 +266,9 @@ def generate_language_binding_cases( if language == "java": cases = [v for v in cases if v["service"] != "hdfs"] elif language == "go": - # sqlite: https://github.com/apache/opendal/actions/runs/14443414830/job/40498759995?pr=6018#step:22:243 # hdfs: has problem with ListEmptyDir # oss: timed out with ListSubDir - cases = [v for v in cases if v["service"] not in ["hdfs", "oss", "sqlite"]] + cases = [v for v in cases if v["service"] not in ["hdfs", "oss"]] if os.getenv("GITHUB_IS_PUSH") == "true": return cases
