nix-community.nixvim/flake/dev/tests.nix
Matt Sturgeon 7d0ac00557
flake/ci: re-enable most tests on buildbot
Most still run on all platforms, but many now only run on x86_64-linux.
2025-05-30 20:56:17 +01:00

21 lines
449 B
Nix

{
self,
helpers,
...
}:
{
perSystem =
{ pkgs, ... }:
{
# TODO: consider whether all these tests are needed in the `checks` output
checks = pkgs.callPackages ../../tests {
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;
};
};
}