nixosTests.docker-tools-cross: migrate to runTestOn

Part of #386873
This commit is contained in:
Piotr Kwiecinski 2025-04-02 17:19:19 +02:00
parent d3b5f76505
commit b7a4f78fcb
No known key found for this signature in database
GPG key ID: EC0DE1CB9D5258B4
2 changed files with 67 additions and 69 deletions

View file

@ -374,7 +374,7 @@ in
docker-registry = runTest ./docker-registry.nix; docker-registry = runTest ./docker-registry.nix;
docker-tools = handleTestOn [ "x86_64-linux" ] ./docker-tools.nix { }; docker-tools = handleTestOn [ "x86_64-linux" ] ./docker-tools.nix { };
docker-tools-nix-shell = runTest ./docker-tools-nix-shell.nix; docker-tools-nix-shell = runTest ./docker-tools-nix-shell.nix;
docker-tools-cross = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./docker-tools-cross.nix { }; docker-tools-cross = runTestOn [ "x86_64-linux" "aarch64-linux" ] ./docker-tools-cross.nix;
docker-tools-overlay = runTestOn [ "x86_64-linux" ] ./docker-tools-overlay.nix; docker-tools-overlay = runTestOn [ "x86_64-linux" ] ./docker-tools-overlay.nix;
docling-serve = runTest ./docling-serve.nix; docling-serve = runTest ./docling-serve.nix;
documize = handleTest ./documize.nix { }; documize = handleTest ./documize.nix { };

View file

@ -2,7 +2,6 @@
# tests that _include_ running the result are separate. That way, most people # tests that _include_ running the result are separate. That way, most people
# can run the majority of the test suite without the extra setup. # can run the majority of the test suite without the extra setup.
import ./make-test-python.nix (
{ pkgs, ... }: { pkgs, ... }:
let let
@ -81,4 +80,3 @@ import ./make-test-python.nix (
) )
''; '';
} }
)