diff --git a/sdk/python/tests/integration/feature_repos/universal/data_source_creator.py b/sdk/python/tests/integration/feature_repos/universal/data_source_creator.py index 5eb9676f40..513a94ee21 100644 --- a/sdk/python/tests/integration/feature_repos/universal/data_source_creator.py +++ b/sdk/python/tests/integration/feature_repos/universal/data_source_creator.py @@ -61,5 +61,6 @@ def create_logged_features_destination(self) -> LoggingDestination: def teardown(self): raise NotImplementedError - def xdist_groups(self) -> list[str]: + @staticmethod + def xdist_groups() -> list[str]: return [] diff --git a/sdk/python/tests/integration/feature_repos/universal/data_sources/file.py b/sdk/python/tests/integration/feature_repos/universal/data_sources/file.py index 772379a493..35325c2737 100644 --- a/sdk/python/tests/integration/feature_repos/universal/data_sources/file.py +++ b/sdk/python/tests/integration/feature_repos/universal/data_sources/file.py @@ -451,7 +451,8 @@ def __init__(self, project_name: str, *args, **kwargs): self.server_port: int = 0 self.proc = None - def xdist_groups(self) -> list[str]: + @staticmethod + def xdist_groups() -> list[str]: return ["keycloak"] def setup(self, registry: RegistryConfig):