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" ];
# Test suite fails: https://bugs.r-project.org/bugzilla/show_bug.cgi?id=15975.
doCheck = false;
# The test suite fails when building without the recommended packages.
doCheck = withRecommendedPackages;
enableParallelBuilding = true;

View file

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