10 lines
191 B
Python
10 lines
191 B
Python
import pytest
|
|
|
|
|
|
# I guess makes sense by default
|
|
@pytest.fixture(autouse=True)
|
|
def without_cachew():
|
|
from my.core.cachew import disabled_cachew
|
|
|
|
with disabled_cachew():
|
|
yield
|