Skip to content

Commit

Permalink
fix undef symbol in test for cobalt and lsf
Browse files Browse the repository at this point in the history
  • Loading branch information
MattToast committed Dec 9, 2022
1 parent 7404b1d commit eadcebb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/full_wlm/test_generic_batch_launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ def test_batch_model(fileutils, wlmutils):
script = fileutils.get_test_conf_path("sleep.py")
batch_settings = exp.create_batch_settings(nodes=1, time="00:01:00")
if wlmutils.get_test_launcher() == "lsf":
batch.set_account(wlmutils.get_test_account())
batch_settings.set_account(wlmutils.get_test_account())
if wlmutils.get_test_launcher() == "cobalt":
batch.set_account(wlmutils.get_test_account())
batch.set_queue("debug-flat-quad")
batch_settings.set_account(wlmutils.get_test_account())
batch_settings.set_queue("debug-flat-quad")
run_settings = wlmutils.get_run_settings("python", f"{script} --time=5")
model = exp.create_model(
"m1", path=test_dir, run_settings=run_settings, batch_settings=batch_settings
"model", path=test_dir, run_settings=run_settings, batch_settings=batch_settings
)
model.set_path(test_dir)

Expand Down

0 comments on commit eadcebb

Please sign in to comment.