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.
tool-call
python scripts/fetch_server_test_models.py
1 parent 35ac17f commit 5227321Copy full SHA for 5227321
examples/server/tests/features/environment.py
@@ -33,6 +33,8 @@ def after_scenario(context, scenario):
33
print(line)
34
if not is_server_listening(context.server_fqdn, context.server_port):
35
print("\x1b[33;101mERROR: Server stopped listening\x1b[0m")
36
+ if 'slow' in set(str(t) for t in scenario.tags):
37
+ print("\x1b[33;101mERROR: Make sure to precache models before running slow scenarios:\n python scripts/fetch_server_test_models.py\x1b[0m")
38
39
if context.server_process.poll() is not None:
40
assert False, f"Server not running pid={context.server_process.pid} ..."
0 commit comments