mirror of
https://github.com/home-assistant/core.git
synced 2026-02-24 11:57:05 +00:00
* allow for different systems * installation is a load_json_*fixture param * allow installation to be parameterized * test setup of various systems * add more fixtures * test setup of integration * tweak test * tweak const * add expected state/services * extend setup test * tidy up * tidy up tweaks * code tweaks * refactor expected results dicts * woops * refatcor serialize * refactor test * tweak * tweak code * rename symbol * ensure actual I/O remains blocked * tweak * typo * use constants * Update conftest.py Co-authored-by: Martin Hjelmare <marhje52@gmail.com> * change filename * add config fixture * config is a fixture * config is a fixture now 2 * lint * lint * refactor * lint * lint * restore email addr * use const * use snapshots instead of helper class * doctweak * correct snapshot --------- Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
20 lines
586 B
Python
20 lines
586 B
Python
"""Constants for the evohome tests."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Final
|
|
|
|
ACCESS_TOKEN: Final = "at_1dc7z657UKzbhKA..."
|
|
REFRESH_TOKEN: Final = "rf_jg68ZCKYdxEI3fF..."
|
|
SESSION_ID: Final = "F7181186..."
|
|
USERNAME: Final = "test_user@gmail.com"
|
|
|
|
# The h-numbers refer to issues in HA's core repo
|
|
TEST_INSTALLS: Final = (
|
|
"minimal", # evohome (single zone, no DHW)
|
|
"default", # evohome (multi-zone, with DHW & ghost zones)
|
|
"h032585", # VisionProWifi (no preset_mode for TCS)
|
|
"h099625", # RoundThermostat
|
|
"system_004", # RoundModulation
|
|
)
|