Skip to content

Commit

Permalink
Clarify purpose of package in End-to-End test
Browse files Browse the repository at this point in the history
  • Loading branch information
Luflosi committed Apr 2, 2024
1 parent 5406d68 commit 998d7c7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nix/e2e-test.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ self:
imports = [
self.outputs.nixosModules.dyndnsd
];
environment.systemPackages = [ pkgs.dig.dnsutils ];

users.groups.ddns = {};
systemd.services.dyndnsd.serviceConfig = {
Expand Down Expand Up @@ -111,6 +110,8 @@ self:
};
environmentFiles = [ "/etc/dyndnsd/vars.env" ];
};

environment.systemPackages = [ pkgs.dig.dnsutils ]; # Provide the `dig` command in the test script
};
testScript = ''
def query(
Expand Down

0 comments on commit 998d7c7

Please sign in to comment.