From ee633a75d62a424f8f1d62e01f05cc88ba585067 Mon Sep 17 00:00:00 2001 From: Thibault Derousseaux Date: Tue, 13 Feb 2024 17:31:05 -0500 Subject: [PATCH] fixup! Update to Atoti Python API 0.8.9 --- tests/docker/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/docker/conftest.py b/tests/docker/conftest.py index 1c4a485..de42bff 100644 --- a/tests/docker/conftest.py +++ b/tests/docker/conftest.py @@ -32,11 +32,11 @@ def poetry_executable_path_fixture() -> str: @pytest.fixture(name="docker_image_name", scope="session") def docker_image_name_fixture( - docker_executable_path: str, poetry_executable_path: str, project_name: str + docker_executable_path: str, project_name: str ) -> Generator[str, None, None]: tag = f"{project_name}:{uuid4()}" build_image_output = run_command( - [poetry_executable_path, "run", "app", "build-docker", tag] + [docker_executable_path, "build", "--tag", tag, "."] ) assert f"naming to docker.io/library/{tag}" in build_image_output yield tag