mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 20:25:32 +03:00
parent
b0b64316bc
commit
832fbbde00
2 changed files with 15 additions and 17 deletions
|
@ -1,18 +1,16 @@
|
||||||
import ./make-test-python.nix (
|
{ lib, ... }:
|
||||||
{ lib, ... }:
|
{
|
||||||
{
|
name = "actual";
|
||||||
name = "actual";
|
meta.maintainers = [ lib.maintainers.oddlama ];
|
||||||
meta.maintainers = [ lib.maintainers.oddlama ];
|
|
||||||
|
|
||||||
nodes.machine =
|
nodes.machine =
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
services.actual.enable = true;
|
services.actual.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
testScript = ''
|
testScript = ''
|
||||||
machine.wait_for_open_port(3000)
|
machine.wait_for_open_port(3000)
|
||||||
machine.succeed("curl -fvvv -Ls http://localhost:3000/ | grep 'Actual'")
|
machine.succeed("curl -fvvv -Ls http://localhost:3000/ | grep 'Actual'")
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
)
|
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue