tests: take responsibility for flakecheck/buildbot split

This commit is contained in:
Matt Sturgeon 2025-07-01 00:58:48 +01:00
parent 2e24f8e62b
commit 278eb40fa7
2 changed files with 40 additions and 43 deletions

View file

@ -6,16 +6,13 @@
{
perSystem =
{ pkgs, ... }:
let
tests = pkgs.callPackage ../../tests {
inherit helpers self;
};
in
{
# 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;
};
checks = tests.flakeCheck;
ci.buildbot = tests.buildbot;
};
}