Skip to content

Commit 8ac997c

Browse files
authored
Set BigQuery dataset for e2e tests (#1620)
Signed-off-by: Willem Pienaar <git@willem.co>
1 parent 024737c commit 8ac997c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

sdk/python/tests/test_historical_retrieval.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,9 @@ def test_historical_features_from_bigquery_sources(
386386
online_store=SqliteOnlineStoreConfig(
387387
path=os.path.join(temp_dir, "online_store.db"),
388388
),
389-
offline_store=BigQueryOfflineStoreConfig(type="bigquery",),
389+
offline_store=BigQueryOfflineStoreConfig(
390+
type="bigquery", dataset=bigquery_dataset
391+
),
390392
)
391393
)
392394
elif provider_type == "gcp":
@@ -397,7 +399,9 @@ def test_historical_features_from_bigquery_sources(
397399
random.choices(string.ascii_uppercase + string.digits, k=10)
398400
),
399401
provider="gcp",
400-
offline_store=BigQueryOfflineStoreConfig(type="bigquery",),
402+
offline_store=BigQueryOfflineStoreConfig(
403+
type="bigquery", dataset=bigquery_dataset
404+
),
401405
)
402406
)
403407
elif provider_type == "gcp_custom_offline_config":

0 commit comments

Comments
 (0)