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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
449 B
Nix
Raw Normal View History

{
self,
helpers,
...
}:
{
perSystem =
2025-01-19 12:55:15 +00:00
{ pkgs, ... }:
{
# 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;
};
};
}