Initial commit: VoIdeaAI - voice-first AI idea assistant

This commit is contained in:
2026-05-13 12:51:42 +03:00
commit 688d043dad
421 changed files with 47915 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
"""Root conftest for VoIdea tests."""
import os
import sys
from pathlib import Path
# Ensure app is importable
sys.path.insert(0, str(Path(__file__).parent.parent))
# Set test environment
os.environ.setdefault("PROJECT_ENV", "test")
os.environ.setdefault("PROJECT_VERSION", "1.0.0")
os.environ.setdefault("JWT_SECRET_KEY", "test-secret-key-not-for-production")