nixosTests.trilium-server: handleTest -> runTest

This commit is contained in:
Sizhe Zhao 2025-07-09 12:11:55 +08:00
parent a698ac1214
commit 913252c5aa
No known key found for this signature in database
GPG Key ID: ED1807251A7DA08F
2 changed files with 44 additions and 47 deletions

View File

@ -1454,7 +1454,7 @@ in
tracee = handleTestOn [ "x86_64-linux" ] ./tracee.nix { };
trezord = runTest ./trezord.nix;
trickster = runTest ./trickster.nix;
trilium-server = handleTestOn [ "x86_64-linux" ] ./trilium-server.nix { };
trilium-server = runTestOn [ "x86_64-linux" ] ./trilium-server.nix;
tsm-client-gui = runTest ./tsm-client-gui.nix;
ttyd = runTest ./web-servers/ttyd.nix;
tt-rss = runTest ./web-apps/tt-rss.nix;

View File

@ -1,5 +1,3 @@
import ./make-test-python.nix (
{ ... }:
{
name = "trilium-server";
nodes = {
@ -52,4 +50,3 @@ import ./make-test-python.nix (
)
'';
}
)