nixosTests.static-web-server: migrate to runTest

Part of #386873
This commit is contained in:
Piotr Kwiecinski 2025-04-16 14:36:52 +02:00
parent 0159ddabe6
commit efee1fc5cc
No known key found for this signature in database
GPG Key ID: EC0DE1CB9D5258B4
2 changed files with 35 additions and 37 deletions

View File

@ -1233,7 +1233,7 @@ in
stargazer = runTest ./web-servers/stargazer.nix;
starship = runTest ./starship.nix;
stash = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./stash.nix { };
static-web-server = handleTest ./web-servers/static-web-server.nix { };
static-web-server = runTest ./web-servers/static-web-server.nix;
step-ca = handleTestOn [ "x86_64-linux" ] ./step-ca.nix { };
stratis = handleTest ./stratis { };
strongswan-swanctl = handleTest ./strongswan-swanctl.nix { };

View File

@ -1,4 +1,3 @@
import ../make-test-python.nix (
{ pkgs, lib, ... }:
{
name = "static-web-server";
@ -38,4 +37,3 @@ import ../make-test-python.nix (
machine.wait_for_unit("static-web-server.service")
'';
}
)