Removes I/O from linky tests (#31299)
parent
cf0e467150
commit
da14e2927f
|
@ -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…
Reference in New Issue