chromium tests: inherit timeout from the package

/cc #49442.  It should decrease the waste of resources due to abortions.
wip/yesman
Vladimír Čunát 6 years ago
parent c8e2b666a7
commit cc41aefe44
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
  1. 6
      nixos/tests/chromium.nix

@ -12,8 +12,10 @@ with pkgs.lib;
mapAttrs (channel: chromiumPkg: makeTest rec {
name = "chromium-${channel}";
meta = with pkgs.stdenv.lib.maintainers; {
maintainers = [ aszlig ];
meta = {
maintainers = with maintainers; [ aszlig ];
# https://github.com/NixOS/hydra/issues/591#issuecomment-435125621
inherit (chromiumPkg.meta) timeout;
};
enableOCR = true;

Loading…
Cancel
Save