7 lines
95 B
Python
7 lines
95 B
Python
|
import pytest
|
||
|
|
||
|
|
||
|
@pytest.fixture(autouse=True)
|
||
|
def enable_db_access_for_all_tests(db):
|
||
|
pass
|