tests: disable cachew in my.tests subpackage
This commit is contained in:
parent
7cae9d5bf3
commit
094519acaf
1 changed files with 8 additions and 0 deletions
8
my/tests/conftest.py
Normal file
8
my/tests/conftest.py
Normal file
|
@ -0,0 +1,8 @@
|
|||
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
|
Loading…
Add table
Reference in a new issue