NixOS Integration tests: Re-enable for macOS
This commit is contained in:
parent
92323443a5
commit
8d3a38e8b1
2 changed files with 2 additions and 6 deletions
|
@ -36,7 +36,7 @@ in
|
|||
};
|
||||
platforms = lib.mkOption {
|
||||
type = types.listOf types.raw;
|
||||
default = lib.platforms.linux;
|
||||
default = lib.platforms.linux ++ lib.platforms.darwin;
|
||||
description = ''
|
||||
Sets the [`meta.platforms`](https://nixos.org/manual/nixpkgs/stable/#var-meta-platforms) attribute on the [{option}`test`](#test-opt-test) derivation.
|
||||
'';
|
||||
|
|
|
@ -20,11 +20,7 @@ recurseIntoAttrs {
|
|||
concat = callPackage ./concat-test.nix {};
|
||||
linkFarm = callPackage ./link-farm.nix {};
|
||||
overriding = callPackage ../test-overriding.nix {};
|
||||
# VM test not supported beyond linux yet
|
||||
references =
|
||||
if stdenv.hostPlatform.isLinux
|
||||
then references
|
||||
else {};
|
||||
inherit references;
|
||||
writeCBin = callPackage ./writeCBin.nix {};
|
||||
writeClosure-union = callPackage ./writeClosure-union.nix {
|
||||
inherit (references) samples;
|
||||
|
|
Loading…
Reference in a new issue