lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

lib/tests: Add check-eval.nix to run simple tests.

This can be used by evaluation-only tools to validate tests are still
working.

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