Skip to content

Commit

Permalink
Fix broken test on master
Browse files Browse the repository at this point in the history
Signed-off-by: Willem Pienaar <git@willem.co>
  • Loading branch information
woop committed Apr 2, 2021
1 parent 3553737 commit 1247bd9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions sdk/python/feast/repo_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,8 @@ def cli_check_repo(repo_path: Path):
config_path = repo_path / "feature_store.yaml"
if not config_path.exists():
print(
f"Can't find feature_store.yaml at {repo_path}. Make sure you're running this command in an initialized feast repository."
f"Can't find feature_store.yaml at {repo_path}. Make sure you're running feast from an initialized "
f"feast repository. "
)
sys.exit(1)

Expand All @@ -153,7 +154,7 @@ def init_repo(repo_path: Path, minimal: bool):
repo_config = repo_path / "feature_store.yaml"

if repo_config.exists():
print("Feature repository is already initalized, nothing to do.")
print("Feature repository is already initialized, nothing to do.")
sys.exit(1)

project_id = generate_project_name()
Expand Down Expand Up @@ -212,7 +213,7 @@ def init_repo(repo_path: Path, minimal: bool):

print("Generated feature_store.yaml and example features in example_repo.py")
print(
"Now try runing `feast apply` to apply, or `feast materialize` to sync data to the online store"
"Now try running `feast apply` to apply and `feast materialize` to sync data to the online store"
)


Expand Down
2 changes: 1 addition & 1 deletion sdk/python/tests/test_historical_retrieval.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ def test_historical_features_from_bigquery_sources():
provider="local",
online_store=OnlineStoreConfig(
local=LocalOnlineStoreConfig(
os.path.join(temp_dir, "online_store.db"),
path=os.path.join(temp_dir, "online_store.db"),
)
),
)
Expand Down

0 comments on commit 1247bd9

Please sign in to comment.