Skip to content

Commit

Permalink
made xdist_group methods static
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Baron <[email protected]>
  • Loading branch information
danbaron63 committed Oct 18, 2024
1 parent cdb8539 commit c2f3a74
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 []
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit c2f3a74

Please sign in to comment.