From e783f88dc526ed182c61df51c837ec0b28330566 Mon Sep 17 00:00:00 2001 From: David Corvoysier Date: Tue, 25 Feb 2025 09:21:25 +0000 Subject: [PATCH] test(neuron): remove erroneous line --- integration-tests/fixtures/neuron/export_models.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/integration-tests/fixtures/neuron/export_models.py b/integration-tests/fixtures/neuron/export_models.py index a49642da..fe5bdddc 100644 --- a/integration-tests/fixtures/neuron/export_models.py +++ b/integration-tests/fixtures/neuron/export_models.py @@ -190,7 +190,7 @@ def maybe_export_model(config_name, model_config): logger.debug("Build logs %s", logs) try: - container = client.containers.run( + client.containers.run( export_image, environment=env, auto_remove=True, @@ -199,7 +199,6 @@ def maybe_export_model(config_name, model_config): shm_size="1G", ) logger.info(f"Successfully exported model for config {config_name}") - container.logs() except Exception as e: logger.exception(f"An exception occurred while running container: {e}.") pass