Skip to content

Commit 5080a48

Browse files
paulteehanclaude
andcommitted
feat: add mysql test dispatch
Wires the test framework dispatch for the MySQL v4 adapter (soda-mysql, landing in soda-extensions). Companion change to feature/mysql-support in soda-extensions and soda-library. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent c50a8d8 commit 5080a48

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

soda-tests/src/helpers/data_source_test_helper.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,12 @@ def create(cls, test_datasource: str, name: str) -> DataSourceTestHelper:
335335
)
336336

337337
return HanaDataSourceTestHelper(name)
338+
elif test_datasource == "mysql":
339+
from soda_mysql.test_helpers.mysql_data_source_test_helper import (
340+
MySqlDataSourceTestHelper,
341+
)
342+
343+
return MySqlDataSourceTestHelper(name)
338344
else:
339345
raise AssertionError(f"Unknown test data source {test_datasource}")
340346

0 commit comments

Comments
 (0)