apply treefmt

This commit is contained in:
Jörg Thalheim 2023-12-10 17:00:31 +01:00
parent f970ec3524
commit b267eb917d

View file

@ -69,9 +69,17 @@ def test_expression() -> None:
with open(TEST_ROOT.joinpath("assets/ci.nix"), "r") as ci_nix:
common_test(["-E", ci_nix.read()])
def test_eval_error() -> None:
with TemporaryDirectory() as tempdir:
cmd = [str(BIN), "--gc-roots-dir", tempdir, "--meta", "--flake", ".#legacyPackages.x86_64-linux"]
cmd = [
str(BIN),
"--gc-roots-dir",
tempdir,
"--meta",
"--flake",
".#legacyPackages.x86_64-linux",
]
res = subprocess.run(
cmd,
cwd=TEST_ROOT.joinpath("assets"),