Skip to content

Commit

Permalink
TST: print caproto stdout and stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
mrakitin committed Feb 14, 2024
1 parent 7a9944a commit d7ec78c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,6 @@ def caproto_ioc(wait=3):

std_out, std_err = p.communicate()
std_out = std_out.decode()
print(std_out)
sep = "=" * 80
print(f"STDOUT:\n{sep}\n{std_out}")
print(f"STDERR:\n{sep}\n{std_err}")

0 comments on commit d7ec78c

Please sign in to comment.