From 297b444dfb6adb71d5d1e61ea1b5aff16683896e Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sun, 30 Mar 2025 22:03:48 +0900 Subject: test: separate app and sandbox Signed-off-by: Ophestra --- flake.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index 1d251ab2..93e21bec 100644 --- a/flake.nix +++ b/flake.nix @@ -58,12 +58,19 @@ in { fortify = callPackage ./test { inherit system self; }; - fpkg = callPackage ./cmd/fpkg/test { inherit system self; }; race = callPackage ./test { inherit system self; withRace = true; }; + sandbox = callPackage ./test/sandbox { inherit self; }; + sandbox-race = callPackage ./test/sandbox { + inherit self; + withRace = true; + }; + + fpkg = callPackage ./cmd/fpkg/test { inherit system self; }; + formatting = runCommandLocal "check-formatting" { nativeBuildInputs = [ nixfmt-rfc-style ]; } '' cd ${./.} -- cgit v1.3.1