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