R: run the test suite only when recommended packages are built
This commit is contained in:
parent
d7c70809e6
commit
ead6bc4a57
@ -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;
|
||||
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user