tests: avoid dependency on documentation
This commit is contained in:
parent
21fbc5e5ad
commit
edc3bede6e
|
@ -15,12 +15,16 @@ let
|
|||
inherit lib pkgs;
|
||||
check = false;
|
||||
} ++ [
|
||||
# Fix impurities. Without these some of the user's environment
|
||||
# will leak into the tests through `builtins.getEnv`.
|
||||
{
|
||||
# Fix impurities. Without these some of the user's environment
|
||||
# will leak into the tests through `builtins.getEnv`.
|
||||
xdg.enable = true;
|
||||
home.username = "hm-user";
|
||||
home.homeDirectory = "/home/hm-user";
|
||||
|
||||
# Avoid including documentation since this will cause
|
||||
# unnecessary rebuilds of the tests.
|
||||
manual.manpages.enable = false;
|
||||
}
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue