Unverified Commit 699f0c21 authored by Jacek Galowicz's avatar Jacek Galowicz Committed by GitHub
Browse files

nixosTests.nixos-test-driver.skip-typecheck: init (#511380)

parents f6a4fe17 7d7a9f22
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -152,6 +152,7 @@ in
    ssh-backdoor = runTestOn [ "x86_64-linux" ] ./nixos-test-driver/ssh-backdoor.nix;
    console-log = runTest ./nixos-test-driver/console-log.nix;
    containers = runTest ./nixos-test-driver/containers.nix;
    skip-typecheck = runTest ./nixos-test-driver/skip-typecheck.nix;
    driver-timeout =
      pkgs.runCommand "ensure-timeout-induced-failure"
        {
+21 −0
Original line number Diff line number Diff line
/**
  nixosTests.simple, but with skipTypeCheck.
  This catches regressions in the wiring, e.g.
  https://github.com/NixOS/nixpkgs/pull/511225
*/
{
  name = "skip-typecheck";
  meta = {
    maintainers = [ ];
  };

  skipTypeCheck = true;

  nodes.machine = { };

  testScript = ''
    start_all()
    machine.wait_for_unit("multi-user.target")
    machine.shutdown()
  '';
}