diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index d44ac5ebd08d..ede3e3fc3a0e 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -341,7 +341,7 @@ in { documize = handleTest ./documize.nix {}; documentation = pkgs.callPackage ../modules/misc/documentation/test.nix { inherit nixosLib; }; doh-proxy-rust = handleTest ./doh-proxy-rust.nix {}; - dokuwiki = handleTest ./dokuwiki.nix {}; + dokuwiki = runTest ./dokuwiki.nix; dolibarr = handleTest ./dolibarr.nix {}; domination = handleTest ./domination.nix {}; dovecot = handleTest ./dovecot.nix {}; diff --git a/nixos/tests/dokuwiki.nix b/nixos/tests/dokuwiki.nix index 6f7ee60fc193..ebbefd0dcfaf 100644 --- a/nixos/tests/dokuwiki.nix +++ b/nixos/tests/dokuwiki.nix @@ -1,6 +1,8 @@ -import ./make-test-python.nix ({ pkgs, ... }: +{ config, ... }: let + pkgs = config.node.pkgs; + template-bootstrap3 = pkgs.stdenv.mkDerivation rec { name = "bootstrap3"; version = "2022-07-27"; @@ -163,4 +165,4 @@ in { "curl -sSfL http://site1.local/rewrite-test | grep 'Hello, NixOS!'", ) ''; -}) +}