Files
orion/tests/performance/conftest.py
2025-09-21 13:00:10 +02:00

11 lines
275 B
Python

# tests/performance/conftest.py
"""Performance test specific fixtures."""
import pytest
@pytest.fixture
def performance_db_session(db):
"""Database session optimized for performance testing"""
# You can add performance-specific DB configurations here
return db