File tree Expand file tree Collapse file tree 2 files changed +9
-12
lines changed
feast/infra/online_stores/contrib
tests/integration/feature_repos/universal/online_store Expand file tree Collapse file tree 2 files changed +9
-12
lines changed Original file line number Diff line number Diff line change 1- from tests .integration .feature_repos .universal .online_store .postgres import (
2- PostgresOnlieStoreCreator ,
3- )
41from tests .integration .feature_repos .integration_test_repo_config import (
52 IntegrationTestRepoConfig ,
63)
4+ from tests .integration .feature_repos .universal .online_store .postgres import (
5+ PostgresOnlieStoreCreator ,
6+ )
77
88FULL_REPO_CONFIGS = [
99 IntegrationTestRepoConfig (
Original file line number Diff line number Diff line change 1010class PostgresOnlieStoreCreator (OnlineStoreCreator ):
1111 def __init__ (self , project_name : str , ** kwargs ):
1212 super ().__init__ (project_name )
13- self .container = (
14- PostgresContainer (
15- "postgres:16" ,
16- username = "root" ,
17- password = "test" ,
18- dbname = "test" ,
19- )
20- .with_exposed_ports (5432 )
21- )
13+ self .container = PostgresContainer (
14+ "postgres:16" ,
15+ username = "root" ,
16+ password = "test" ,
17+ dbname = "test" ,
18+ ).with_exposed_ports (5432 )
2219
2320 def create_online_store (self ) -> Dict [str , str ]:
2421 self .container .start ()
You can’t perform that action at this time.
0 commit comments