Skip to content

Commit

Permalink
Undo snapshot script edit
Browse files Browse the repository at this point in the history
  • Loading branch information
courtneyholcomb committed Sep 12, 2023
1 parent 64164d9 commit 254093e
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions metricflow/test/generate_snapshots.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,30 +70,30 @@ class MetricFlowTestCredentialSetForAllEngines(FrozenBaseModel): # noqa: D
@property
def as_configurations(self) -> Sequence[MetricFlowTestConfiguration]: # noqa: D
return (
# MetricFlowTestConfiguration(
# engine=SqlEngine.DUCKDB,
# credential_set=self.duck_db,
# ),
# MetricFlowTestConfiguration(
# engine=SqlEngine.REDSHIFT,
# credential_set=self.redshift,
# ),
# MetricFlowTestConfiguration(
# engine=SqlEngine.SNOWFLAKE,
# credential_set=self.snowflake,
# ),
MetricFlowTestConfiguration(
engine=SqlEngine.DUCKDB,
credential_set=self.duck_db,
),
MetricFlowTestConfiguration(
engine=SqlEngine.REDSHIFT,
credential_set=self.redshift,
),
MetricFlowTestConfiguration(
engine=SqlEngine.SNOWFLAKE,
credential_set=self.snowflake,
),
MetricFlowTestConfiguration(
engine=SqlEngine.BIGQUERY,
credential_set=self.big_query,
),
# MetricFlowTestConfiguration(
# engine=SqlEngine.DATABRICKS,
# credential_set=self.databricks,
# ),
# MetricFlowTestConfiguration(
# engine=SqlEngine.POSTGRES,
# credential_set=self.postgres,
# ),
MetricFlowTestConfiguration(
engine=SqlEngine.DATABRICKS,
credential_set=self.databricks,
),
MetricFlowTestConfiguration(
engine=SqlEngine.POSTGRES,
credential_set=self.postgres,
),
)


Expand Down

0 comments on commit 254093e

Please sign in to comment.