Skip to content

Commit

Permalink
fixup! Update to Atoti Python API 0.8.9
Browse files Browse the repository at this point in the history
  • Loading branch information
tibdex committed Feb 13, 2024
1 parent e3e0b91 commit ee633a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/docker/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ee633a7

Please sign in to comment.