diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-03-30 22:03:48 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-03-30 22:09:46 +0900 |
| commit | 297b444dfb6adb71d5d1e61ea1b5aff16683896e (patch) | |
| tree | 61136bffe95aae67baa436b20ce60b7b9074d126 /flake.nix | |
| parent | 89a05909a4fb393864a8aa752f6979dd9aaa2898 (diff) | |
test: separate app and sandbox
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -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 ${./.} |
