nix-community.nixvim/flake-modules/tests.nix
Matt Sturgeon 990ef039f7
tests: move test derivations to tests/default.nix
Move the previous `default.nix` to `main.nix` so that `default.nix` can
be used for defining the set of all test derivations.

`main.nix` is imported by `default.nix`, but is only responsible for the
tests built from `tests/test-sources/`.
2024-10-18 20:51:30 +01:00

27 lines
305 B
Nix

{
self,
lib,
helpers,
...
}:
{
perSystem =
{
pkgs,
pkgsUnfree,
system,
...
}:
{
checks = import ../tests {
inherit
helpers
lib
pkgs
pkgsUnfree
self
system
;
};
};
}