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