diff options
author | Pierrick Hymbert <pierrick.hymbert@gmail.com> | 2024-02-25 13:49:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-25 13:49:43 +0100 |
commit | d52d7819b8ced70c642a88a59da8c78208dc58ec (patch) | |
tree | 07841f1c5b7ab748bac463e62f3fb7ce0b7f96e9 /examples/server/tests/features/environment.py | |
parent | 12894088170f62e4cad4f8d6a3043c185b414bab (diff) |
server: concurrency fix + monitoring - add /metrics prometheus compatible endpoint (#5708)
* server: monitoring - add /metrics prometheus compatible endpoint
* server: concurrency issue, when 2 task are waiting for results, only one call thread is notified
* server: metrics - move to a dedicated struct
Diffstat (limited to 'examples/server/tests/features/environment.py')
-rw-r--r-- | examples/server/tests/features/environment.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/server/tests/features/environment.py b/examples/server/tests/features/environment.py index 13cc8410..09e82674 100644 --- a/examples/server/tests/features/environment.py +++ b/examples/server/tests/features/environment.py @@ -16,6 +16,8 @@ def before_scenario(context, scenario): def after_scenario(context, scenario): + if context.server_process is None: + return if scenario.status == "failed": if 'GITHUB_ACTIONS' in os.environ: print(f"\x1b[33;101mSCENARIO FAILED: {scenario.name} server logs:\x1b[0m\n\n") |