We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c64828 commit 20689e2Copy full SHA for 20689e2
packages/pytest-simcore/src/pytest_simcore/docker_registry.py
@@ -12,7 +12,6 @@
12
from typing import Any
13
14
import aiodocker
15
-import docker
16
import jsonschema
17
import pytest
18
import tenacity
@@ -26,7 +25,9 @@
26
25
27
28
@pytest.fixture(scope="session")
29
-def docker_registry(keep_docker_up: bool) -> Iterator[str]:
+def docker_registry(
+ async_docker_client: aiodocker.Docker, keep_docker_up: bool
30
+) -> Iterator[str]:
31
"""sets up and runs a docker registry container locally and returns its URL"""
32
# run the registry outside of the stack
33
docker_client = docker.from_env()
0 commit comments