Commit 16e36473 authored by Robert Hensing's avatar Robert Hensing
Browse files

nixos/all-tests: Enable readOnlyPkgs by default for runTest

Most tests are not affected by this because they use the `handleTest`
function instead.
parent b0e17891
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -46,7 +46,7 @@ let
  inherit
    (rec {
      doRunTest = arg: ((import ../lib/testing-python.nix { inherit system pkgs; }).evalTest {
        imports = [ arg ];
        imports = [ arg readOnlyPkgs ];
      }).config.result;
      findTests = tree:
        if tree?recurseForDerivations && tree.recurseForDerivations
@@ -94,7 +94,7 @@ in {

  _3proxy = runTest ./3proxy.nix;
  aaaaxy = runTest ./aaaaxy.nix;
  acme = runTest { imports = [ ./acme.nix readOnlyPkgs ]; };
  acme = runTest ./acme.nix;
  adguardhome = runTest ./adguardhome.nix;
  aesmd = runTestOn ["x86_64-linux"] ./aesmd.nix;
  agate = runTest ./web-servers/agate.nix;