Skip to content

Commit

Permalink
More verbose print
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterKraus committed Mar 4, 2024
1 parent 9f151cf commit 1de5bee
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_99_example_counter.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,10 @@ def test_counter_multidev(
print(f"{ret=}")

utils.run_casenames([casename], [None], ["pip-multidev"])
utils.wait_until_ketchup_status(1, "c", port=12345, timeout=10000)
utils.wait_until_ketchup_status(jobid=1, status="c", port=12345, timeout=10000)

ret = utils.job_status(1)
print(f"{ret=}")
status = utils.job_status(1)["data"][1]["status"]
assert status == "c"
files = os.listdir(os.path.join(".", "Jobs", "1"))
Expand Down

0 comments on commit 1de5bee

Please sign in to comment.