From 3ae4e090eb7f3bda81b9c95c692a66eee4aaa468 Mon Sep 17 00:00:00 2001 From: Nicolas Patry Date: Wed, 2 Oct 2024 18:00:27 +0200 Subject: [PATCH] Remove stdin messing --- integration-tests/conftest.py | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/integration-tests/conftest.py b/integration-tests/conftest.py index 6e56be0c..7814722b 100644 --- a/integration-tests/conftest.py +++ b/integration-tests/conftest.py @@ -517,16 +517,18 @@ def launcher(event_loop): docker.types.DeviceRequest(count=gpu_count, capabilities=[["gpu"]]) ] - raise Exception( - f""" - Docoker image: {DOCKER_IMAGE} - args: {args} - container name: {container_name} - env: {env} - device_requests: {device_requests} - devices: {devices} - """ - ) + # raise Exception( + # f""" + # Docoker image: {DOCKER_IMAGE} + # args: {args} + # container name: {container_name} + # env: {env} + # device_requests: {device_requests} + # devices: {devices} + # """ + # ) + env.pop("LOG_LEVEL") + env.pop("ROCR_VISIBLE_DEVICES") container = client.containers.run( DOCKER_IMAGE, command=args,