nixosTests.kanboard: migrate to runTest

Tracking issue: NixOS#386873
This commit is contained in:
Zexin Yuan 2025-03-26 16:34:31 +08:00
parent 6b617cec37
commit 2ae4dff6ab
No known key found for this signature in database
2 changed files with 18 additions and 20 deletions

View file

@ -656,7 +656,7 @@ in
jotta-cli = handleTest ./jotta-cli.nix { };
k3s = handleTest ./k3s { };
kafka = handleTest ./kafka.nix { };
kanboard = handleTest ./web-apps/kanboard.nix { };
kanboard = runTest ./web-apps/kanboard.nix;
kanidm = handleTest ./kanidm.nix { };
kanidm-provisioning = handleTest ./kanidm-provisioning.nix { };
karma = handleTest ./karma.nix { };

View file

@ -1,7 +1,6 @@
import ../make-test-python.nix (
{ lib, ... }:
{ lib, ... }:
{
{
name = "kanboard";
meta.maintainers = with lib.maintainers; [ yzx9 ];
@ -21,5 +20,4 @@ import ../make-test-python.nix (
machine.succeed("curl -k --fail http://localhost", timeout=10)
'';
}
)
}