diff --git a/tests/RobotFramework/tasks.py b/tests/RobotFramework/tasks.py index a002849f381..da43bfc4551 100644 --- a/tests/RobotFramework/tasks.py +++ b/tests/RobotFramework/tasks.py @@ -455,7 +455,7 @@ def test( # which causes multiple networks with the same name to be created. log.info("Creating a container network") c.run( - f"command -v {container_cli} &>/dev/null && ({container_cli} network create {network_name} --driver bridge || true) || true" + f"command -v {container_cli} &>/dev/null && ({container_cli} network create {network_name} --driver bridge 2>/dev/null || true) || true" ) # Required because of docker race condition which leads to duplicate networks