Skip to content

Commit

Permalink
Separate project check asserts
Browse files Browse the repository at this point in the history
  • Loading branch information
ml-evs committed Jan 15, 2024
1 parent 9067f0e commit 83cbc32
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/integration/test_slurm.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ def test_project_check(job_controller, capsys):
"✓ Jobstore",
"✓ Queue store",
]
assert all(line in captured.out for line in expected)
for line in expected:
assert line in captured.out


@pytest.mark.parametrize(
Expand Down

0 comments on commit 83cbc32

Please sign in to comment.