From 2ee4450b0f4b95a1b90f2eb5ffea98b90e48c196 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Fri, 23 Feb 2024 16:10:32 +0000 Subject: [PATCH] fix ci? --- src/devenv/cli.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/devenv/cli.py b/src/devenv/cli.py index a7a26deb9..a2a245dc9 100644 --- a/src/devenv/cli.py +++ b/src/devenv/cli.py @@ -764,7 +764,6 @@ def test(ctx, debug, keep_going, exclude, names): level="info", ) - modules = os.path.join(pwd, "src/modules") if not os.path.exists("devenv.yaml"): write_yaml( strictyaml.as_document({"inputs": {}}, schema=schema) @@ -772,7 +771,7 @@ def test(ctx, debug, keep_going, exclude, names): os.chmod("devenv.yaml", 0o644) yaml = read_yaml() inputs = yaml.get("inputs", {}) - inputs["devenv"] = {"url": f"path:{modules}"} + inputs["devenv"] = {"url": f"path:{pwd}?dir=src/modules"} yaml["inputs"] = inputs write_yaml(yaml)