Initial commit: VoIdeaAI - voice-first AI idea assistant
This commit is contained in:
@@ -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")
|
||||
Reference in New Issue
Block a user