nixosTests.aesmd: Use module based runner

Changed files
+3 -3
nixos
+2 -2
nixos/tests/aesmd.nix
···
-
import ./make-test-python.nix ({ pkgs, lib, ... }: {
+
{ pkgs, lib, ... }: {
name = "aesmd";
meta = {
maintainers = with lib.maintainers; [ veehaitch ];
···
assert aesmd_config == "whitelist url = http://nixos.org\nproxy type = direct\ndefault quoting type = ecdsa_256\n", "aesmd.conf differs"
'';
-
})
+
}
+1 -1
nixos/tests/all-tests.nix
···
_3proxy = runTest ./3proxy.nix;
acme = runTest ./acme.nix;
adguardhome = runTest ./adguardhome.nix;
-
aesmd = handleTest ./aesmd.nix {};
+
aesmd = runTest ./aesmd.nix;
agate = handleTest ./web-servers/agate.nix {};
agda = handleTest ./agda.nix {};
airsonic = handleTest ./airsonic.nix {};