From 07b994baedd3647f57b3fa8c6b022bff56bddbc9 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Thu, 7 Aug 2025 10:51:30 -0500 Subject: [PATCH] tests: include integration tests in buildbot Include working integration tests in buildbot outpu. Signed-off-by: Austin Horstman --- tests/flake.nix | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/tests/flake.nix b/tests/flake.nix index 4527cb98..d2e7f901 100644 --- a/tests/flake.nix +++ b/tests/flake.nix @@ -132,7 +132,20 @@ in { # 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 ( system: