From ae79a5463b7e94f0ceeba28d660b2506d79945da Mon Sep 17 00:00:00 2001 From: Ruben Arts Date: Mon, 4 Nov 2024 14:26:35 +0100 Subject: [PATCH] fix: test --- tests/integration/test_run_cli.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/integration/test_run_cli.py b/tests/integration/test_run_cli.py index 18b70e457..9baeab73e 100644 --- a/tests/integration/test_run_cli.py +++ b/tests/integration/test_run_cli.py @@ -95,6 +95,13 @@ def test_run_with_activation(pixi: Path, tmp_path: Path) -> None: ExitCode.SUCCESS, ) + # Run the default task and create cache + verify_cli_command( + [pixi, "run", "--manifest-path", manifest, "task"], + ExitCode.SUCCESS, + stdout_contains="test123", + ) + # Modify the environment variable in cache cache_path = tmp_path.joinpath(".pixi/activation-env-v0/activation_default.json") with cache_path.open("r+") as f: