nix: run integration tests with race detector
All checks were successful
Test / Create distribution (push) Successful in 25s
Test / Run NixOS test (push) Successful in 3m4s

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2025-02-16 20:58:08 +09:00
parent 468696f611
commit 60c10c3f4a
2 changed files with 17 additions and 1 deletions

View File

@@ -88,7 +88,10 @@
touch $out
'';
nixos-tests = callPackage ./test.nix { inherit system self home-manager; };
nixos-tests = callPackage ./test.nix {
inherit system self home-manager;
inherit (self.packages.${system}) fortify;
};
}
);