nix-community.nixvim/flake/dev/tests.nix
Matt Sturgeon 3e64ce020d flake/ci: re-enable most tests on buildbot
Most still run on all platforms, but many now only run on x86_64-linux.

(cherry picked from commit 7d0ac00557)
2025-06-02 11:00:38 +00: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;
};
};
}