victoria{logs,metrics,traces}: Run tests from passthru for victoriametrics stacks (#467252)

This commit is contained in:
Maximilian Bosch
2025-12-06 12:27:02 +00:00
committed by GitHub
3 changed files with 3 additions and 11 deletions
+1 -5
View File
@@ -48,11 +48,7 @@ buildGoModule (finalAttrs: {
__darwinAllowLocalNetworking = true;
passthru = {
tests = {
inherit (nixosTests)
victorialogs
;
};
tests = lib.recurseIntoAttrs nixosTests.victorialogs;
updateScript = nix-update-script { };
};
+1 -3
View File
@@ -77,9 +77,7 @@ buildGoModule (finalAttrs: {
__darwinAllowLocalNetworking = true;
passthru = {
tests = {
inherit (nixosTests) victoriametrics;
};
tests = lib.recurseIntoAttrs nixosTests.victoriametrics;
updateScript = ./update.sh;
};
+1 -3
View File
@@ -47,9 +47,7 @@ buildGoModule (finalAttrs: {
__darwinAllowLocalNetworking = true;
passthru = {
tests = {
inherit (nixosTests) victoriatraces;
};
tests = lib.recurseIntoAttrs nixosTests.victoriatraces;
updateScript = nix-update-script { };
};