Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix lint
Signed-off-by: Kevin Zhang <kzhang@tecton.ai>
  • Loading branch information
kevjumba committed Jul 29, 2022
commit ef2465fd3de9d2f8b7f6bbaffe228ec92fa0eea3
4 changes: 2 additions & 2 deletions sdk/python/tests/integration/e2e/test_universal_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import pytest

from feast.feature_service import FeatureService
from feast import BigQuerySource, Entity, FeatureView, Field
from feast.feature_service import FeatureService
from feast.types import Float32, String
from tests.integration.feature_repos.universal.entities import driver
from tests.integration.feature_repos.universal.feature_views import driver_feature_view
Expand Down Expand Up @@ -96,4 +96,4 @@ def test_read_pre_applied() -> None:
store.apply([fs])

assert len(store.list_feature_services()) == 2
store.get_feature_service("new_feature_service")
store.get_feature_service("new_feature_service")
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
NULLABLE_ONLINE_STORE_CONFIGS,
make_feature_store_yaml,
)
from tests.utils.e2e_test_utils import make_feature_store_yaml
from tests.utils.online_read_write_test_utils import basic_rw_test


Expand Down Expand Up @@ -164,4 +163,4 @@ def test_nullable_online_store(test_nullable_online_store) -> None:
result = runner.run(["apply"], cwd=repo_path)
assertpy.assert_that(result.returncode).is_equal_to(0)
finally:
runner.run(["teardown"], cwd=repo_path)
runner.run(["teardown"], cwd=repo_path)