test: Add integration tests for execution flows in native Python runner (#19198)

This commit is contained in:
Iván Ovejero
2025-09-05 10:49:45 +02:00
committed by GitHub
parent 2001397387
commit 36958e3ffa
14 changed files with 1228 additions and 16 deletions

View File

@@ -0,0 +1,13 @@
# Local task broker
LOCAL_TASK_BROKER_PORT = 8080
LOCAL_TASK_BROKER_URL = f"http://localhost:{LOCAL_TASK_BROKER_PORT}"
LOCAL_TASK_BROKER_WS_PATH = "/runners/_ws"
# Timing
TASK_RESPONSE_WAIT = 3
TASK_TIMEOUT = 2
GRACEFUL_SHUTDOWN_TIMEOUT = 1
# Health check
HEALTH_CHECK_PORT = 5679
HEALTH_CHECK_URL = f"http://localhost:{HEALTH_CHECK_PORT}"