mirror of
https://github.com/home-assistant/core.git
synced 2026-05-16 05:21:35 +01:00
0e0318dc53
Co-authored-by: J. Nick Koston <nick@koston.org>
9 lines
163 B
Python
9 lines
163 B
Python
"""Define fixtures available for all tests."""
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def mock_bluetooth(enable_bluetooth):
|
|
"""Auto mock bluetooth."""
|