Skip to content

Commit

Permalink
Enable Scheduler for LSF Queue by default
Browse files Browse the repository at this point in the history
- Explicitly disable scheduler for job_queue test
  • Loading branch information
xjules authored and andreas-el committed May 14, 2024
1 parent 5b79154 commit 2e48eee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/ert/shared/feature_toggling.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
class FeatureScheduler:
_DEFAULTS = {
"LOCAL": True,
"LSF": False,
"LSF": True,
"SLURM": False,
"TORQUE": True,
}
Expand Down
1 change: 1 addition & 0 deletions tests/integration_tests/job_queue/test_lsf_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ def test_run_mocked_lsf_queue():
run_cli(
ENSEMBLE_EXPERIMENT_MODE,
"--disable-monitor",
"--disable-scheduler",
"poly.ert",
)
log = Path("bsub_log").read_text(encoding="utf-8")
Expand Down

0 comments on commit 2e48eee

Please sign in to comment.