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