mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
f594f608dc
Hydra can handle packages that `throw` but not attributes that disappear depending on platform, and it seems okay for evaluation to fail here for non‐Linux platforms.
30 lines
635 B
Nix
30 lines
635 B
Nix
/*
|
|
|
|
This file is a test that makes sure that the `pkgs.nixos` and
|
|
`pkgs.testers.nixosTest` functions work. It's far from a perfect test suite,
|
|
but better than not checking them at all on hydra.
|
|
|
|
To run this test:
|
|
|
|
nixpkgs$ nix-build -A tests.nixos-functions
|
|
|
|
*/
|
|
{ pkgs, lib, stdenv, ... }:
|
|
|
|
let
|
|
dummyVersioning = {
|
|
revision = "test";
|
|
versionSuffix = "test";
|
|
label = "test";
|
|
};
|
|
in pkgs.recurseIntoAttrs {
|
|
|
|
nixos-test = (pkgs.nixos {
|
|
system.nixos = dummyVersioning;
|
|
boot.loader.grub.enable = false;
|
|
fileSystems."/".device = "/dev/null";
|
|
system.stateVersion = lib.trivial.release;
|
|
}).toplevel;
|
|
|
|
}
|