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 20689e2 commit d8f71d4Copy full SHA for d8f71d4
packages/pytest-simcore/src/pytest_simcore/docker_registry.py
@@ -11,7 +11,7 @@
11
from pathlib import Path
12
from typing import Any
13
14
-import aiodocker
+import docker
15
import jsonschema
16
import pytest
17
import tenacity
@@ -25,9 +25,7 @@
25
26
27
@pytest.fixture(scope="session")
28
-def docker_registry(
29
- async_docker_client: aiodocker.Docker, keep_docker_up: bool
30
-) -> Iterator[str]:
+def docker_registry(keep_docker_up: bool) -> 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