1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00

tests: include integration tests in buildbot

Include working integration tests in buildbot outpu.

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Austin Horstman 2025-08-07 10:51:30 -05:00
parent 2b87f9a53a
commit 07b994baed

View file

@ -132,7 +132,20 @@
in in
{ {
# TODO: increase buildbot testing scope # TODO: increase buildbot testing scope
buildbot = forCI (system: (testChunks system)); buildbot = forCI (
system:
let
allIntegrationTests = integrationTests system;
workingIntegrationTests = nixpkgs.lib.filterAttrs (
name: _:
nixpkgs.lib.elem name [
"integration-nixos-basics"
"integration-nixos-legacy-profile-management"
]
) allIntegrationTests;
in
(testChunks system) // workingIntegrationTests
);
devShells = forAllSystems ( devShells = forAllSystems (
system: system: