Skip to content

Commit

Permalink
Set BigQuery dataset for e2e tests
Browse files Browse the repository at this point in the history
Signed-off-by: Willem Pienaar <git@willem.co>
  • Loading branch information
woop committed Jun 4, 2021
1 parent 024737c commit 23f7422
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions sdk/python/tests/test_historical_retrieval.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,9 @@ def test_historical_features_from_bigquery_sources(
online_store=SqliteOnlineStoreConfig(
path=os.path.join(temp_dir, "online_store.db"),
),
offline_store=BigQueryOfflineStoreConfig(type="bigquery",),
offline_store=BigQueryOfflineStoreConfig(
type="bigquery", dataset=bigquery_dataset
),
)
)
elif provider_type == "gcp":
Expand All @@ -397,7 +399,9 @@ def test_historical_features_from_bigquery_sources(
random.choices(string.ascii_uppercase + string.digits, k=10)
),
provider="gcp",
offline_store=BigQueryOfflineStoreConfig(type="bigquery",),
offline_store=BigQueryOfflineStoreConfig(
type="bigquery", dataset=bigquery_dataset
),
)
)
elif provider_type == "gcp_custom_offline_config":
Expand Down

0 comments on commit 23f7422

Please sign in to comment.