Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI #2112

Merged
merged 1 commit into from
Jun 27, 2024
Merged

Fix CI #2112

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion soda/core/tests/helpers/data_source_fixture.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ def _create_schema_name(self):
return schema_name

def _test_session_starts(self):
self.data_source = self._create_test_data_source()
self.schema_data_source = self._create_schema_data_source()
self._drop_schema_if_exists()
self._create_schema_if_not_exists()
self.data_source = self._create_test_data_source()

def _create_schema_data_source(self) -> DataSource:
configuration_dict = self._build_configuration_dict()
Expand Down
4 changes: 2 additions & 2 deletions soda/oracle/tests/oracle_data_source_fixture.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def sql_test_table_row(row):
return f"INSERT ALL {rows_sql} \n SELECT 1 FROM DUAL"

def _create_schema_if_not_exists_sql(self):
casify = self.data_source.default_casify_system_name
casify = str.upper
return f"""
declare
userexist integer;
Expand All @@ -64,7 +64,7 @@ def _create_schema_if_not_exists_sql(self):
"""

def _drop_schema_if_exists_sql(self):
casify = self.data_source.default_casify_system_name
casify = str.upper
return f"""
declare
userexist integer;
Expand Down
Loading