Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
9 changes: 2 additions & 7 deletions sdk/python/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
)
from tests.integration.feature_repos.repo_configuration import (
FULL_REPO_CONFIGS,
REDIS_CLUSTER_CONFIG,
REDIS_CONFIG,
Environment,
construct_test_environment,
Expand Down Expand Up @@ -171,14 +170,10 @@ def cleanup():
return e


@pytest.fixture(
scope="session",
params=[REDIS_CONFIG, REDIS_CLUSTER_CONFIG],
ids=[str(c) for c in [REDIS_CONFIG, REDIS_CLUSTER_CONFIG]],
)
@pytest.fixture()
def local_redis_environment(request, worker_id):
e = construct_test_environment(
IntegrationTestRepoConfig(online_store=request.param), worker_id=worker_id
IntegrationTestRepoConfig(online_store=REDIS_CONFIG), worker_id=worker_id
)

def cleanup():
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@
[
# Redis configurations
IntegrationTestRepoConfig(online_store=REDIS_CONFIG),
IntegrationTestRepoConfig(online_store=REDIS_CLUSTER_CONFIG),
# GCP configurations
IntegrationTestRepoConfig(
provider="gcp",
Expand Down