Tests restructuring
This commit is contained in:
10
tests/performance/conftest.py
Normal file
10
tests/performance/conftest.py
Normal file
@@ -0,0 +1,10 @@
|
||||
# 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
|
||||
|
||||
Reference in New Issue
Block a user