From 03a171c54d839a245a86406b482626cf2b6668bf Mon Sep 17 00:00:00 2001 From: Benjamin Labrecque Date: Thu, 23 Jul 2026 15:46:06 +0200 Subject: [PATCH] cli: better comments for tests --- cli/tests/tests/test_service_creator.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli/tests/tests/test_service_creator.py b/cli/tests/tests/test_service_creator.py index 597d4ab..7f7fb05 100644 --- a/cli/tests/tests/test_service_creator.py +++ b/cli/tests/tests/test_service_creator.py @@ -58,6 +58,8 @@ def test_add_new_service(tmp_path, mocker: MockerFixture): # Because uv needs packages/agebd to generate the lock file of the services as it is # a dependency + # As a consequence it was also added to 'fixtures/expected_output' so that the dir + # comparison does not fail (tmp_path / "packages/agebd").mkdir(parents=True, exist_ok=True) (tmp_path / "packages/agebd/pyproject.toml").write_text(mock_agebd_pyproject_toml)