From 5adab714831a2ed990ef1a69025826067c183a00 Mon Sep 17 00:00:00 2001 From: Robin Huang Date: Sat, 28 Dec 2024 16:24:27 -0800 Subject: [PATCH] Update. --- .../src/{{cookiecutter.project_slug}}/__init__.py | 0 {{cookiecutter.project_name}}/tests/conftest.py | 5 +++++ 2 files changed, 5 insertions(+) create mode 100644 {{cookiecutter.project_name}}/src/{{cookiecutter.project_slug}}/__init__.py create mode 100644 {{cookiecutter.project_name}}/tests/conftest.py diff --git a/{{cookiecutter.project_name}}/src/{{cookiecutter.project_slug}}/__init__.py b/{{cookiecutter.project_name}}/src/{{cookiecutter.project_slug}}/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/{{cookiecutter.project_name}}/tests/conftest.py b/{{cookiecutter.project_name}}/tests/conftest.py new file mode 100644 index 0000000..d155eee --- /dev/null +++ b/{{cookiecutter.project_name}}/tests/conftest.py @@ -0,0 +1,5 @@ +import os +import sys + +# Add the project root directory to Python path +sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))