core/lib/tests/check-eval.nix

11 lines
229 B
Nix
Raw Normal View History

2024-05-01 22:14:04 +00:00
# Throws an error if any of our lib tests fail.
2024-06-30 08:16:52 +00:00
let
tests = [
"misc"
"systems"
];
all = builtins.concatLists (map (f: import (./. + "/${f}.nix")) tests);
in
if all == [ ] then null else throw (builtins.toJSON all)