From bd7e098c25f1a8e2f9f0599e4927e12d558ec2cd Mon Sep 17 00:00:00 2001 From: ric-evans Date: Fri, 31 May 2024 16:36:04 -0400 Subject: [PATCH] fix test fixture --- tests/test_pyproject_toml_builder.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_pyproject_toml_builder.py b/tests/test_pyproject_toml_builder.py index 31dd416..15c3ff2 100644 --- a/tests/test_pyproject_toml_builder.py +++ b/tests/test_pyproject_toml_builder.py @@ -169,6 +169,7 @@ def directory() -> str: f.write("# This is a test package, it's not real\n") os.mkdir(f"{_dir}/mock_package") + Path(f"{_dir}/mock_package/__init__.py").touch() os.mkdir(f"{_dir}/.circleci") Path(f"{_dir}/.circleci/config.yml").touch()