Removes I/O from linky tests (#31299)
This commit is contained in:
parent
cf0e467150
commit
da14e2927f
1 changed files with 11 additions and 0 deletions
11
tests/components/linky/conftest.py
Normal file
11
tests/components/linky/conftest.py
Normal file
|
@ -0,0 +1,11 @@
|
|||
"""Linky generic test utils."""
|
||||
from unittest.mock import patch
|
||||
|
||||
import pytest
|
||||
|
||||
|
||||
@pytest.fixture(autouse=True)
|
||||
def patch_fakeuseragent():
|
||||
"""Stub out fake useragent dep that makes requests."""
|
||||
with patch("pylinky.client.UserAgent", return_value="Test Browser"):
|
||||
yield
|
Loading…
Add table
Reference in a new issue