1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-14 02:33:38 +02:00

tests: remove tests attribute from root default.nix

Having it there prevented, e.g., `nix-env -qaP` from working in some
cases.

Fixes #509

(cherry picked from commit b8b391ad18)
This commit is contained in:
Robert Helgesson 2019-02-23 22:17:59 +01:00
parent ee1bfa0d92
commit dd94a849df
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
2 changed files with 1 additions and 5 deletions

View File

@ -9,4 +9,4 @@ before_script:
script:
- nix-shell . -A install
- nix-shell . -A tests.run.all
- nix-shell tests -A run.all

View File

@ -11,8 +11,4 @@ rec {
};
nixos = import ./nixos;
tests = import ./tests {
inherit pkgs;
};
}