nixosTests.traefik: migrate to runTestOn

Part of #386873
This commit is contained in:
Piotr Kwiecinski 2025-03-29 22:17:53 +01:00
parent 5564a61167
commit 728e8e2b58
No known key found for this signature in database
GPG key ID: EC0DE1CB9D5258B4
2 changed files with 96 additions and 98 deletions

View file

@ -1231,7 +1231,7 @@ in {
tomcat = handleTest ./tomcat.nix {};
tor = handleTest ./tor.nix {};
tpm-ek = handleTest ./tpm-ek {};
traefik = handleTestOn ["aarch64-linux" "x86_64-linux"] ./traefik.nix {};
traefik = runTestOn ["aarch64-linux" "x86_64-linux"] ./traefik.nix;
trafficserver = handleTest ./trafficserver.nix {};
transfer-sh = handleTest ./transfer-sh.nix {};
transmission_3 = handleTest ./transmission.nix { transmission = pkgs.transmission_3; };

View file

@ -1,6 +1,5 @@
# Test Traefik as a reverse proxy of a local web service
# and a Docker container.
import ./make-test-python.nix (
{ pkgs, ... }:
{
name = "traefik";
@ -106,4 +105,3 @@ import ./make-test-python.nix (
)
'';
}
)