diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 01689042..b56cc079 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,7 +4,7 @@ ci: autoupdate_schedule: quarterly repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.6.0 + rev: v5.0.0 hooks: - id: check-yaml - id: end-of-file-fixer @@ -20,7 +20,7 @@ repos: - id: detect-private-key exclude: ^tests/certs/ - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.5.0 + rev: v0.8.6 hooks: - id: ruff args: ['--fix'] diff --git a/aiodocker/docker.py b/aiodocker/docker.py index f9632548..14fb7c06 100644 --- a/aiodocker/docker.py +++ b/aiodocker/docker.py @@ -389,9 +389,7 @@ def _docker_machine_ssl_context() -> ssl.SSLContext: context.set_ciphers(ssl._RESTRICTED_SERVER_CIPHERS) # type: ignore certs_path = os.environ.get("DOCKER_CERT_PATH", None) if certs_path is None: - raise ValueError( - "Cannot create ssl context, " "DOCKER_CERT_PATH is not set!" - ) + raise ValueError("Cannot create ssl context, DOCKER_CERT_PATH is not set!") certs_path2 = Path(certs_path) context.load_verify_locations(cafile=str(certs_path2 / "ca.pem")) context.load_cert_chain( diff --git a/aiodocker/images.py b/aiodocker/images.py index 5cbefb3e..cd122892 100644 --- a/aiodocker/images.py +++ b/aiodocker/images.py @@ -120,8 +120,7 @@ def pull( registry, has_registry_host, _ = image.partition("/") if not has_registry_host: raise ValueError( - "Image should have registry host " - "when auth information is provided" + "Image should have registry host when auth information is provided" ) # TODO: assert registry == repo? headers["X-Registry-Auth"] = compose_auth_header(auth, registry) @@ -191,8 +190,7 @@ def push( registry, has_registry_host, _ = name.partition("/") if not has_registry_host: raise ValueError( - "Image should have registry host " - "when auth information is provided" + "Image should have registry host when auth information is provided" ) headers["X-Registry-Auth"] = compose_auth_header(auth, registry) cm = self.docker._query( diff --git a/aiodocker/utils.py b/aiodocker/utils.py index 77ca2d26..cf0d03b8 100644 --- a/aiodocker/utils.py +++ b/aiodocker/utils.py @@ -35,8 +35,7 @@ async def parse_result(response, response_type=None, *, encoding="utf-8"): if cl is None or cl == "0": return "" raise TypeError( - "Cannot auto-detect response type " - "due to missing Content-Type header." + "Cannot auto-detect response type due to missing Content-Type header." ) main_type, sub_type, extras = parse_content_type(ct) if sub_type == "json": diff --git a/tests/test_containers.py b/tests/test_containers.py index 551c36ea..3068d4e0 100644 --- a/tests/test_containers.py +++ b/tests/test_containers.py @@ -80,7 +80,7 @@ async def test_run_failing_start_container(docker: Docker, image_name: str) -> N config={ # we want to raise an error # `executable file not found` - "Cmd": ["pytohon", "-c" "print('hello')"], + "Cmd": ["pytohon", "-cprint('hello')"], "Image": image_name, } ) diff --git a/tests/test_images.py b/tests/test_images.py index 5e1096db..ac1208ad 100644 --- a/tests/test_images.py +++ b/tests/test_images.py @@ -51,8 +51,7 @@ async def test_build_from_remote_tar( skip_windows() remote = ( - "https://github.com/aio-libs/aiodocker/" - "raw/main/tests/docker/docker_context.tar" + "https://github.com/aio-libs/aiodocker/raw/main/tests/docker/docker_context.tar" ) tag = f"{random_name()}:1.0"