Skip to content

Commit

Permalink
Commented out broken test lines (see issue 5812)
Browse files Browse the repository at this point in the history
  • Loading branch information
wxtim committed Nov 3, 2023
1 parent e9d035f commit 3183cab
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/unit/test_indep_task_queues.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,10 @@ def test_queue_and_release(
assert sorted([r.tdef.name for r in released]) == sorted(expected_released)

# check released tasks change state to "preparing", and not is_queued
for r in released:
assert r.state.reset.called_with(TASK_STATUS_PREPARING)
assert r.state.reset.called_with(is_queued=False)
# Commented out pending https://github.com/cylc/cylc-flow/issues/5812
# for r in released:
# assert r.state.reset.called_with(TASK_STATUS_PREPARING)
# assert r.state.reset.called_with(is_queued=False)

# check that adopted orphans end up in the default queue
orphans = ["orphan1", "orphan2"]
Expand Down

0 comments on commit 3183cab

Please sign in to comment.