9 lines
156 B
Python
9 lines
156 B
Python
|
"""INKBIRD session fixtures."""
|
||
|
|
||
|
import pytest
|
||
|
|
||
|
|
||
|
@pytest.fixture(autouse=True)
|
||
|
def mock_bluetooth(mock_bleak_scanner_start):
|
||
|
"""Auto mock bluetooth."""
|