|
24 | 24 | import pandas as pd |
25 | 25 | import pytest |
26 | 26 | from _pytest.nodes import Item |
| 27 | +from tests.data.data_creator import (create_basic_driver_dataset, # noqa: E402 |
| 28 | + create_document_dataset) |
| 29 | +from tests.integration.feature_repos.integration_test_repo_config import \ |
| 30 | + IntegrationTestRepoConfig # noqa: E402 |
| 31 | +from tests.integration.feature_repos.repo_configuration import ( # noqa: E402 |
| 32 | + AVAILABLE_OFFLINE_STORES, AVAILABLE_ONLINE_STORES, |
| 33 | + OFFLINE_STORE_TO_PROVIDER_CONFIG, Environment, TestData, |
| 34 | + construct_test_environment, construct_universal_feature_views, |
| 35 | + construct_universal_test_data) |
| 36 | +from tests.integration.feature_repos.universal.data_sources.file import \ |
| 37 | + FileDataSourceCreator # noqa: E402 |
| 38 | +from tests.integration.feature_repos.universal.entities import ( # noqa: E402 |
| 39 | + customer, driver, location) |
| 40 | +from tests.utils.http_server import check_port_open, free_port # noqa: E402 |
27 | 41 |
|
28 | 42 | from feast.data_source import DataSource |
29 | 43 | from feast.feature_store import FeatureStore # noqa: E402 |
30 | 44 | from feast.wait import wait_retry_backoff # noqa: E402 |
31 | | -from tests.data.data_creator import ( # noqa: E402 |
32 | | - create_basic_driver_dataset, |
33 | | - create_document_dataset, |
34 | | -) |
35 | | -from tests.integration.feature_repos.integration_test_repo_config import ( |
36 | | - IntegrationTestRepoConfig, # noqa: E402 |
37 | | -) |
38 | | -from tests.integration.feature_repos.repo_configuration import ( # noqa: E402 |
39 | | - AVAILABLE_OFFLINE_STORES, |
40 | | - AVAILABLE_ONLINE_STORES, |
41 | | - OFFLINE_STORE_TO_PROVIDER_CONFIG, |
42 | | - Environment, |
43 | | - TestData, |
44 | | - construct_test_environment, |
45 | | - construct_universal_feature_views, |
46 | | - construct_universal_test_data, |
47 | | -) |
48 | | -from tests.integration.feature_repos.universal.data_sources.file import ( |
49 | | - FileDataSourceCreator, # noqa: E402 |
50 | | -) |
51 | | -from tests.integration.feature_repos.universal.entities import ( # noqa: E402 |
52 | | - customer, |
53 | | - driver, |
54 | | - location, |
55 | | -) |
56 | | -from tests.utils.http_server import check_port_open, free_port # noqa: E402 |
57 | 45 |
|
58 | 46 | logger = logging.getLogger(__name__) |
59 | 47 |
|
@@ -179,7 +167,6 @@ def start_test_local_server(repo_path: str, port: int): |
179 | 167 | no_access_log=True, |
180 | 168 | keep_alive_timeout=30, |
181 | 169 | type_="http", |
182 | | - no_feature_log=False, |
183 | 170 | workers=1, |
184 | 171 | registry_ttl_sec=30, |
185 | 172 | ) |
|
0 commit comments