diff --git a/datadog_checks_dev/datadog_checks/dev/tooling/commands/env/start.py b/datadog_checks_dev/datadog_checks/dev/tooling/commands/env/start.py index f323f35abe6e8..952bbe2ba717c 100644 --- a/datadog_checks_dev/datadog_checks/dev/tooling/commands/env/start.py +++ b/datadog_checks_dev/datadog_checks/dev/tooling/commands/env/start.py @@ -10,6 +10,7 @@ from ....ci import running_on_ci from ....fs import dir_exists, file_exists, path_join +from ....utils import ON_WINDOWS from ...e2e import E2E_SUPPORTED_TYPES, derive_interface, start_environment, stop_environment from ...e2e.agent import DEFAULT_PYTHON_VERSION, DEFAULT_SAMPLING_COLLECTION_INTERVAL from ...git import get_current_branch @@ -242,6 +243,10 @@ def start(ctx, check, env, agent, python, dev, base, env_vars, org_name, profile stop_environment(check, env, metadata=metadata) environment.remove_config() abort() + + if ON_WINDOWS and python < 3: + time.sleep(10) + echo_success('success!') start_commands = metadata.get('start_commands', [])