at 23.11-beta 226 B view raw
1# Throws an error if any of our lib tests fail. 2 3let tests = [ "misc" "systems" ]; 4 all = builtins.concatLists (map (f: import (./. + "/${f}.nix")) tests); 5in if all == [] 6 then null 7 else throw (builtins.toJSON all)