This repository was archived by the owner on May 17, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 88from .redshift import Redshift
99from .presto import Presto
1010from .databricks import Databricks
11+ from .trino import Trino
1112
1213from .connect import connect_to_uri
Original file line number Diff line number Diff line change 1515TEST_BIGQUERY_CONN_STRING : str = None
1616TEST_REDSHIFT_CONN_STRING : str = None
1717TEST_ORACLE_CONN_STRING : str = None
18+ < << << << HEAD
1819TEST_DATABRICKS_CONN_STRING : str = os .environ .get ("DATADIFF_DATABRICKS_URI" )
20+ == == == =
21+ TEST_TRINO_CONN_STRING : str = os .environ .get ("DATADIFF_TRINO_URI" ) or None
22+ > >> >> >> d60e4b8 (Add test scaffolding )
1923
2024DEFAULT_N_SAMPLES = 50
2125N_SAMPLES = int (os .environ .get ("N_SAMPLES" , DEFAULT_N_SAMPLES ))
@@ -54,7 +58,11 @@ def get_git_revision_short_hash() -> str:
5458 db .Redshift : TEST_REDSHIFT_CONN_STRING ,
5559 db .Oracle : TEST_ORACLE_CONN_STRING ,
5660 db .Presto : TEST_PRESTO_CONN_STRING ,
61+ << << << < HEAD
5762 db .Databricks : TEST_DATABRICKS_CONN_STRING ,
63+ == == == =
64+ db .Trino : TEST_TRINO_CONN_STRING ,
65+ >> >> >> > d60e4b8 (Add test scaffolding )
5866}
5967
6068for k , v in CONN_STRINGS .items ():
You can’t perform that action at this time.
0 commit comments