9 lines
184 B
Python
9 lines
184 B
Python
|
"""SensorPush session fixtures."""
|
||
|
|
||
|
import pytest
|
||
|
|
||
|
|
||
|
@pytest.fixture(autouse=True)
|
||
|
def auto_mock_bleak_scanner_start(mock_bleak_scanner_start):
|
||
|
"""Auto mock bleak scanner start."""
|