Skip to content

Commit 818c91d

Browse files
committed
refactor: reorganize project structure with src directory and conftest.py for cleaner test imports
1 parent 94b40b5 commit 818c91d

File tree

5 files changed

+6
-0
lines changed

5 files changed

+6
-0
lines changed

chatbot-api/conftest.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import os
2+
import sys
3+
4+
# Add src directory to Python path
5+
src_path = os.path.join(os.path.dirname(__file__), "src")
6+
sys.path.insert(0, src_path)

chatbot-api/src/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)