From eb481d6cfffaf238a19fe665acc24738747d20a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 23 Oct 2024 09:50:08 +0200 Subject: [PATCH] test_modules: add missing check argument --- pkgs/clan-cli/tests/test_modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/clan-cli/tests/test_modules.py b/pkgs/clan-cli/tests/test_modules.py index 162ef6285..486a40726 100644 --- a/pkgs/clan-cli/tests/test_modules.py +++ b/pkgs/clan-cli/tests/test_modules.py @@ -68,7 +68,7 @@ def test_add_module_to_inventory( } ) ) - subprocess.run(["git", "add", "."], cwd=test_flake_with_core.path) + subprocess.run(["git", "add", "."], cwd=test_flake_with_core.path, check=True) inventory = load_inventory_json(base_path)