We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2109743 commit 30f802dCopy full SHA for 30f802d
examples/server/tests/features/environment.py
@@ -23,6 +23,8 @@ def after_scenario(context, scenario):
23
with closing(open('llama.log', 'r')) as f:
24
for line in f:
25
print(line)
26
+ if not is_server_listening(context.server_fqdn, context.server_port):
27
+ print("ERROR: Server has crashed")
28
29
if not pid_exists(context.server_process.pid):
30
assert False, f"Server not running pid={context.server_process.pid} ..."
0 commit comments