nixosTests.actual: migrate to runTest

Part Of #386873
This commit is contained in:
Martin Weinelt 2025-03-13 22:47:51 +01:00
parent b0b64316bc
commit 832fbbde00
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
2 changed files with 15 additions and 17 deletions

View file

@ -1,4 +1,3 @@
import ./make-test-python.nix (
{ lib, ... }: { lib, ... }:
{ {
name = "actual"; name = "actual";
@ -15,4 +14,3 @@ import ./make-test-python.nix (
machine.succeed("curl -fvvv -Ls http://localhost:3000/ | grep 'Actual'") machine.succeed("curl -fvvv -Ls http://localhost:3000/ | grep 'Actual'")
''; '';
} }
)

View file

@ -148,7 +148,7 @@ in {
aaaaxy = runTest ./aaaaxy.nix; aaaaxy = runTest ./aaaaxy.nix;
acme = import ./acme/default.nix { inherit runTest; }; acme = import ./acme/default.nix { inherit runTest; };
acme-dns = runTest ./acme-dns.nix; acme-dns = runTest ./acme-dns.nix;
actual = handleTest ./actual.nix {}; actual = runTest ./actual.nix;
adguardhome = runTest ./adguardhome.nix; adguardhome = runTest ./adguardhome.nix;
aesmd = runTestOn ["x86_64-linux"] ./aesmd.nix; aesmd = runTestOn ["x86_64-linux"] ./aesmd.nix;
agate = runTest ./web-servers/agate.nix; agate = runTest ./web-servers/agate.nix;