Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the foundation of the universal feature repo and a test that uses it #1734

Merged
merged 20 commits into from
Aug 4, 2021
Merged
Prev Previous commit
Next Next commit
move stuff into with
Signed-off-by: Achal Shah <achals@gmail.com>
  • Loading branch information
achals committed Aug 4, 2021
commit f44a08f69937a9256dc2ceff2cef87bde9c9e7f6
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,13 @@ def construct_feature_store(test_repo_config: TestRepoConfig) -> FeatureStore:
offline_store=offline_store,
online_store=online_store,
)
fs = FeatureStore(config=config)
fv = correctness_feature_view(ds)
entity = driver
fs.apply([fv, entity])
yield fs
fs = FeatureStore(config=config)
fv = correctness_feature_view(ds)
entity = driver
fs.apply([fv, entity])
yield fs

fs.teardown()
fs.teardown()
offline_creator.teardown(project)


Expand Down