R: run the test suite only when recommended packages are built

This commit is contained in:
Peter Simons 2014-11-01 19:33:58 +01:00
parent d7c70809e6
commit ead6bc4a57
2 changed files with 3 additions and 3 deletions

View file

@ -54,8 +54,8 @@ stdenv.mkDerivation rec {
installTargets = [ "install" "install-info" "install-pdf" ]; installTargets = [ "install" "install-info" "install-pdf" ];
# Test suite fails: https://bugs.r-project.org/bugzilla/show_bug.cgi?id=15975. # The test suite fails when building without the recommended packages.
doCheck = false; doCheck = withRecommendedPackages;
enableParallelBuilding = true; enableParallelBuilding = true;

View file

@ -7275,7 +7275,7 @@ let
R = callPackage ../applications/science/math/R { R = callPackage ../applications/science/math/R {
inherit (xlibs) libX11 libXt; inherit (xlibs) libX11 libXt;
texLive = texLiveAggregationFun { paths = [ texLive texLiveExtra ]; }; texLive = texLiveAggregationFun { paths = [ texLive texLiveExtra ]; };
withRecommendedPackages = false; withRecommendedPackages = true;
}; };
rWrapper = callPackage ../development/r-modules/wrapper.nix { rWrapper = callPackage ../development/r-modules/wrapper.nix {