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 e2e tests #19130

Merged
merged 7 commits into from
Dec 19, 2024
Merged
Changes from 1 commit
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
Next Next commit
Fix E2E
IceS2 committed Dec 17, 2024
commit bd8b3b8c27d1676a3970b9415612e109439f9716
1 change: 0 additions & 1 deletion ingestion/tests/cli_e2e/base/config_builders/builders.py
Original file line number Diff line number Diff line change
@@ -89,7 +89,6 @@ def build(self) -> dict:
"type": "AutoClassification",
"storeSampleData": True,
"enableAutoClassification": False,
"profileSample": self.profilerSample,
}
}

6 changes: 4 additions & 2 deletions ingestion/tests/cli_e2e/database/mysql/mysql.yaml
Original file line number Diff line number Diff line change
@@ -18,6 +18,10 @@ source:
includeViews: true
type: DatabaseMetadata
includeDDL: true
tableFilterPattern:
excludes:
- ACT_*
- FLW_*
sink:
type: metadata-rest
config: {}
@@ -28,5 +32,3 @@ workflowConfig:
authProvider: openmetadata
securityConfig:
jwtToken: "eyJraWQiOiJHYjM4OWEtOWY3Ni1nZGpzLWE5MmotMDI0MmJrOTQzNTYiLCJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJhZG1pbiIsImlzQm90IjpmYWxzZSwiaXNzIjoib3Blbi1tZXRhZGF0YS5vcmciLCJpYXQiOjE2NjM5Mzg0NjIsImVtYWlsIjoiYWRtaW5Ab3Blbm1ldGFkYXRhLm9yZyJ9.tS8um_5DKu7HgzGBzS1VTA5uUjKWOCU0B_j08WXBiEC0mr0zNREkqVfwFDD-d24HlNEbrqioLsBuFRiwIWKc1m_ZlVQbG7P36RUxhuv2vbSp80FKyNM-Tj93FDzq91jsyNmsQhyNv_fNr3TXfzzSPjHt8Go0FMMP66weoKMgW2PbXlhVKwEuXUHyakLLzewm9UMeQaEiRzhiTMU3UkLXcKbYEJJvfNFcLwSl9W8JCO_l0Yj3ud-qt_nQYEZwqW6u5nfdQllN133iikV4fM5QZsMCnm8Rq1mvLR0y9bmJiD7fwM1tmJ791TUWqmKaTnP49U493VanKpUAfzIiOiIbhg"


2 changes: 1 addition & 1 deletion ingestion/tests/cli_e2e/test_cli_mysql.py
Original file line number Diff line number Diff line change
@@ -105,7 +105,7 @@ def get_includes_tables() -> List[str]:

@staticmethod
def get_excludes_tables() -> List[str]:
return [".*bot.*"]
return [".*bot.*", "ACT_*", "FLW_*"]

@staticmethod
def expected_filtered_schema_includes() -> int:
Loading
Oops, something went wrong.