summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-06-07 23:55:51 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-06-07 23:55:51 +0200
commit4540dad9e7b4962e11864c042fa1d65cdf5d3455 (patch)
tree19da203f38227dd869e0cfca8613466db44cff55 /nixos
parentb57f066dea90ec16a3f24d5d82629c56595b964c (diff)
nixos/tests/home-assistant: Drop esphome, fix post-restart expectation
Mentioning esphome in the config is now causing an error. Check for the backup module post-restart, not esphome.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/home-assistant.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/nixos/tests/home-assistant.nix b/nixos/tests/home-assistant.nix
index cef0f97c194c..e06c52a5f41c 100644
--- a/nixos/tests/home-assistant.nix
+++ b/nixos/tests/home-assistant.nix
@@ -62,7 +62,6 @@ in {
frontend = {};
# include some popular integrations, that absolutely shouldn't break
- esphome = {};
knx = {};
shelly = {};
zha = {};
@@ -198,7 +197,7 @@ in {
with subtest("Check that new components get setup after restart"):
journal = get_journal_since(cursor)
- for domain in ["esphome"]:
+ for domain in ["backup"]:
assert f"Setup of domain {domain} took" in journal, f"{domain} setup missing"
with subtest("Check that no errors were logged"):