Skip to content

Commit

Permalink
Overrides SingleTestRun group method to avoid gui conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
AugustoMagalhaes committed Sep 10, 2024
1 parent fca1bd5 commit 417deb8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/ert/run_models/ensemble_experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,5 +110,5 @@ def description(cls) -> str:
return "Sample parameters → evaluate (N realizations)"

@classmethod
def group(cls) -> str:
def group(cls) -> Optional[str]:
return ENSEMBLE_EXPERIMENT_GROUP
4 changes: 4 additions & 0 deletions src/ert/run_models/single_test_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,7 @@ def name(cls) -> str:
@classmethod
def description(cls) -> str:
return "Sample parameters → evaluate (one realization)"

@classmethod
def group(cls) -> None:
return None

0 comments on commit 417deb8

Please sign in to comment.