nix-community.nixvim/flake/dev/tests.nix

22 lines
449 B
Nix
Raw Normal View History

{
self,
helpers,
...
}:
2024-05-05 19:39:35 +02:00
{
perSystem =
2025-01-19 12:55:15 +00:00
{ pkgs, ... }:
2024-05-05 19:39:35 +02:00
{
# TODO: consider whether all these tests are needed in the `checks` output
checks = pkgs.callPackages ../../tests {
2025-01-19 12:55:15 +00:00
inherit helpers self;
};
# TODO: consider whether all these tests are needed to be built by buildbot
ci.buildbot = pkgs.callPackages ../../tests {
inherit helpers self;
allSystems = false;
};
};
}