Unverified Commit b7a4f78f authored by Piotr Kwiecinski's avatar Piotr Kwiecinski
Browse files

nixosTests.docker-tools-cross: migrate to runTestOn

Part of #386873
parent d3b5f765
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -374,7 +374,7 @@ in
  docker-registry = runTest ./docker-registry.nix;
  docker-tools = handleTestOn [ "x86_64-linux" ] ./docker-tools.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;
  docling-serve = runTest ./docling-serve.nix;
  documize = handleTest ./documize.nix { };
+66 −68
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
# tests that _include_ running the result are separate. That way, most people
# can run the majority of the test suite without the extra setup.

import ./make-test-python.nix (
{ pkgs, ... }:
let

@@ -81,4 +80,3 @@ import ./make-test-python.nix (
        )
  '';
}
)