mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 05:05:29 +03:00
lib/tests/release.nix: temporary reference to pkgs/test/release
This commit temporarily adds pkgs/test/release to the lib/tests/release.nix test suite, because ofborg already knows about that entry point. We should move the list of test entry points out of ofborg and into a central place in nixpkgs: https://github.com/NixOS/nixpkgs/issues/272591 Once we do that we won't need to have this ugly kludge in an inappropriate place.
This commit is contained in:
parent
2d036511f6
commit
8f34a10d6a
1 changed files with 13 additions and 1 deletions
|
@ -67,5 +67,17 @@ let
|
||||||
in
|
in
|
||||||
pkgs.symlinkJoin {
|
pkgs.symlinkJoin {
|
||||||
name = "nixpkgs-lib-tests";
|
name = "nixpkgs-lib-tests";
|
||||||
paths = map testWithNix nixVersions;
|
paths = map testWithNix nixVersions ++
|
||||||
|
|
||||||
|
#
|
||||||
|
# TEMPORARY MIGRATION MECHANISM
|
||||||
|
#
|
||||||
|
# This comment and the expression which follows it should be
|
||||||
|
# removed as part of resolving this issue:
|
||||||
|
#
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/272591
|
||||||
|
#
|
||||||
|
[(import ../../pkgs/test/release {})]
|
||||||
|
;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue