11 lines
275 B
Python
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
|