2020-03-12 22:27:22 +01:00
|
|
|
"""
|
|
|
|
ESPHome Unittests
|
|
|
|
~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Configuration file for unit tests.
|
|
|
|
|
|
|
|
If adding unit tests ensure that they are fast. Slower integration tests should
|
|
|
|
not be part of a unit test suite.
|
|
|
|
|
|
|
|
"""
|
2024-02-21 03:53:50 +01:00
|
|
|
|
2020-03-12 22:27:22 +01:00
|
|
|
import sys
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
|
|
|
|
|
|
here = Path(__file__).parent
|
|
|
|
|
|
|
|
# Configure location of package root
|
|
|
|
package_root = here.parent.parent
|
|
|
|
sys.path.insert(0, package_root.as_posix())
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def fixture_path() -> Path:
|
|
|
|
"""
|
|
|
|
Location of all fixture files.
|
|
|
|
"""
|
|
|
|
return here / "fixtures"
|