nixosTests.caddy: migrate to runTest (#395444)

This commit is contained in:
Gaétan Lepage 2025-04-02 17:37:22 +02:00 committed by GitHub
commit b1ab0f8dc1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 135 additions and 137 deletions

View file

@ -270,7 +270,7 @@ in
buildbot = runTest ./buildbot.nix;
buildkite-agents = handleTest ./buildkite-agents.nix { };
c2fmzq = handleTest ./c2fmzq.nix { };
caddy = handleTest ./caddy.nix { };
caddy = runTest ./caddy.nix;
cadvisor = handleTestOn [ "x86_64-linux" ] ./cadvisor.nix { };
cage = handleTest ./cage.nix { };
cagebreak = handleTest ./cagebreak.nix { };

View file

@ -1,4 +1,3 @@
import ./make-test-python.nix (
{ pkgs, ... }:
{
name = "caddy";
@ -152,4 +151,3 @@ import ./make-test-python.nix (
webserver.succeed("curl http://localhost | grep caddy")
'';
}
)