at 23.11-pre 309 B view raw
1{ system ? builtins.currentSystem, handleTestOn }: 2let 3 supportedSystems = [ "x86_64-linux" "i686-linux" "aarch64-linux" ]; 4 5in 6{ 7 standard = handleTestOn supportedSystems ./standard.nix { inherit system; }; 8 remote-postgresql = handleTestOn supportedSystems ./remote-postgresql.nix { inherit system; }; 9}