From afd284a0085a4426c51dd8df34fb10d8fcfb6c0b Mon Sep 17 00:00:00 2001 From: Fabian Hauser Date: Tue, 25 Mar 2025 23:59:22 +0200 Subject: [PATCH] Disable backup and outgoing mail in module test --- checks/nixos-modules/default.nix | 8 +++++++- nixos-modules/static-page/test.py | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/checks/nixos-modules/default.nix b/checks/nixos-modules/default.nix index aaeae5d..4773359 100644 --- a/checks/nixos-modules/default.nix +++ b/checks/nixos-modules/default.nix @@ -11,6 +11,7 @@ let filter path mkDefault + mkForce readFile attrNames concatStringsSep @@ -32,7 +33,12 @@ let }) ]; - defaults.imports = [ defaultModule ]; + defaults = { + imports = [ defaultModule ]; + + qois.outgoing-server-mail.enable = mkForce false; + qois.backup-client.enable = mkForce false; + }; # Calls a `test(...)` python function in the test's python file with the list of nodes and helper functions. # Helper symbols may be added as function args when needed and can be found in: diff --git a/nixos-modules/static-page/test.py b/nixos-modules/static-page/test.py index f18b2fe..295635f 100644 --- a/nixos-modules/static-page/test.py +++ b/nixos-modules/static-page/test.py @@ -46,4 +46,4 @@ def test(subtest, webserver): url = "http://example.com/index.html" expect_http_code(webserver, "301", url) - expect_http_location(webserver, "http://localhost/index.html", url) + expect_http_location(webserver, "http://docs.example.com/index.html", url)