tests/fixtures_flakes: remove unused remote flag

This commit is contained in:
Jörg Thalheim
2025-03-19 16:32:17 +01:00
parent 43035b85a5
commit 9a00459861

View File

@@ -249,7 +249,6 @@ def create_flake(
machines: list[str] | None = None,
# alternatively specify the machines directly including their config
machine_configs: dict[str, dict] | None = None,
remote: bool = False,
) -> Iterator[FlakeForTest]:
"""
Creates a flake with the given name and machines.
@@ -314,10 +313,6 @@ def create_flake(
init_git(monkeypatch, flake)
if remote:
with tempfile.TemporaryDirectory(prefix="flake-"):
yield FlakeForTest(flake)
else:
yield FlakeForTest(flake)