Skip to content

Commit

Permalink
trying to see if this fixes the PR integrationt test failure.
Browse files Browse the repository at this point in the history
Signed-off-by: Lokesh Rangineni <lokeshemail@email.com>

Signed-off-by: Lokesh Rangineni <lokeshforjava@gmail.com>
  • Loading branch information
lokeshrangineni committed Jun 3, 2024
1 parent 83e027c commit d5b27c6
Showing 1 changed file with 14 additions and 27 deletions.
41 changes: 14 additions & 27 deletions sdk/python/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,36 +24,24 @@
import pandas as pd
import pytest
from _pytest.nodes import Item
from tests.data.data_creator import (create_basic_driver_dataset, # noqa: E402
create_document_dataset)
from tests.integration.feature_repos.integration_test_repo_config import \
IntegrationTestRepoConfig # noqa: E402
from tests.integration.feature_repos.repo_configuration import ( # noqa: E402
AVAILABLE_OFFLINE_STORES, AVAILABLE_ONLINE_STORES,
OFFLINE_STORE_TO_PROVIDER_CONFIG, Environment, TestData,
construct_test_environment, construct_universal_feature_views,
construct_universal_test_data)
from tests.integration.feature_repos.universal.data_sources.file import \
FileDataSourceCreator # noqa: E402
from tests.integration.feature_repos.universal.entities import ( # noqa: E402
customer, driver, location)
from tests.utils.http_server import check_port_open, free_port # noqa: E402

from feast.data_source import DataSource
from feast.feature_store import FeatureStore # noqa: E402
from feast.wait import wait_retry_backoff # noqa: E402
from tests.data.data_creator import ( # noqa: E402
create_basic_driver_dataset,
create_document_dataset,
)
from tests.integration.feature_repos.integration_test_repo_config import (
IntegrationTestRepoConfig, # noqa: E402
)
from tests.integration.feature_repos.repo_configuration import ( # noqa: E402
AVAILABLE_OFFLINE_STORES,
AVAILABLE_ONLINE_STORES,
OFFLINE_STORE_TO_PROVIDER_CONFIG,
Environment,
TestData,
construct_test_environment,
construct_universal_feature_views,
construct_universal_test_data,
)
from tests.integration.feature_repos.universal.data_sources.file import (
FileDataSourceCreator, # noqa: E402
)
from tests.integration.feature_repos.universal.entities import ( # noqa: E402
customer,
driver,
location,
)
from tests.utils.http_server import check_port_open, free_port # noqa: E402

logger = logging.getLogger(__name__)

Expand Down Expand Up @@ -179,7 +167,6 @@ def start_test_local_server(repo_path: str, port: int):
no_access_log=True,
keep_alive_timeout=30,
type_="http",
no_feature_log=False,
workers=1,
registry_ttl_sec=30,
)
Expand Down

0 comments on commit d5b27c6

Please sign in to comment.