From 967f0c2f7a3e3db3fd9f6cb026c9e7baf53b27ce Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Tue, 29 Jun 2021 01:50:30 +0300 Subject: [PATCH] Update conftest.py --- conftest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/conftest.py b/conftest.py index 4c3056ad..3c957142 100644 --- a/conftest.py +++ b/conftest.py @@ -79,7 +79,8 @@ class TrackedContainer: all_kwargs.update(kwargs) LOGGER.info(f"Running {self.image_name} with args {all_kwargs} ...") self.container = self.docker_client.containers.run( - self.image_name, **all_kwargs + self.image_name, + **all_kwargs, ) return self.container