mirror of
https://github.com/kevinveenbirkenbach/docker-volume-backup.git
synced 2026-08-20 13:12:48 +00:00
The package carried no ruff configuration at all, so it ran on the defaults (E4+E7+E9+F) while infinito-nexus-core, its only consumer, holds itself to a far wider selection. Measured against that selection this tree had 224 findings. It now has none. The selector list is core's verbatim so both repositories answer to one bar. target-version stays py39 rather than core's py311, because requires-python still declares >=3.9 and pyupgrade would otherwise propose syntax the declared minimum cannot run. Every ignore carries its reason: S603/S607 in particular, since running docker and dump binaries from PATH in list form is this tool's whole job and is already injection-safe. Two conversions are judgement rather than mechanics. os.path.join(dir, '') was the rsync idiom for a trailing separator, which Path drops, so it becomes an explicit os.sep. os.path.abspath stays where Path.resolve() would follow symlinks and let a symlinked volume test as inside the snapshot subject. BREAKING CHANGE: VersionMismatch is renamed VersionMismatchError. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
48 lines
1.1 KiB
Python
48 lines
1.1 KiB
Python
"""Builds the on-disk compose directories the compose tests discover."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import shutil
|
|
from typing import TYPE_CHECKING
|
|
|
|
if TYPE_CHECKING:
|
|
from pathlib import Path
|
|
|
|
|
|
def touch(p: Path) -> None:
|
|
p.parent.mkdir(parents=True, exist_ok=True)
|
|
|
|
# ".env/env" leaves ".env" behind as a directory, which blocks a later ".env" file.
|
|
if p.exists() and p.is_dir():
|
|
shutil.rmtree(p)
|
|
|
|
p.write_text("x", encoding="utf-8")
|
|
|
|
|
|
def setup_compose_dir(
|
|
tmp_path: Path,
|
|
name: str = "mailu",
|
|
*,
|
|
compose_name: str = "docker-compose.yml",
|
|
with_override: bool = False,
|
|
with_ca_override: bool = False,
|
|
env_layout: str | None = None, # None | ".env" | ".env/env"
|
|
) -> Path:
|
|
d = tmp_path / name
|
|
d.mkdir(parents=True, exist_ok=True)
|
|
|
|
touch(d / compose_name)
|
|
|
|
if with_override:
|
|
touch(d / "docker-compose.override.yml")
|
|
|
|
if with_ca_override:
|
|
touch(d / "docker-compose.ca.override.yml")
|
|
|
|
if env_layout == ".env":
|
|
touch(d / ".env")
|
|
elif env_layout == ".env/env":
|
|
touch(d / ".env" / "env")
|
|
|
|
return d
|