Skip to content

Commit e2d8008

Browse files
committed
format
1 parent ec32764 commit e2d8008

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

sdk/python/feast/infra/offline_stores/contrib/postgres_offline_store/tests/data_source.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
)
1414
from feast.infra.utils.postgres.connection_utils import df_to_postgres_table
1515
from feast.infra.utils.postgres.postgres_config import PostgreSQLConfig
16+
from feast.feature_logging import LoggingDestination
1617
from tests.integration.feature_repos.universal.data_source_creator import (
1718
DataSourceCreator,
1819
)
@@ -57,6 +58,9 @@ def postgres_container():
5758

5859

5960
class PostgreSQLDataSourceCreator(DataSourceCreator, OnlineStoreCreator):
61+
def create_logged_features_destination(self) -> LoggingDestination:
62+
pass
63+
6064
def __init__(
6165
self, project_name: str, fixture_request: pytest.FixtureRequest, **kwargs
6266
):

sdk/python/feast/infra/online_stores/contrib/postgres_repo_configuration.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,7 @@
66
)
77

88
FULL_REPO_CONFIGS = [
9-
IntegrationTestRepoConfig(online_store_creator=PostgreSQLDataSourceCreator),
9+
IntegrationTestRepoConfig(
10+
online_store="postgres",
11+
online_store_creator=PostgreSQLDataSourceCreator),
1012
]

0 commit comments

Comments
 (0)