summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-11-01 19:33:58 +0100
committerPeter Simons <simons@cryp.to>2014-11-01 21:08:05 +0100
commitead6bc4a57da107357527d5f8d20350cfc8102d0 (patch)
treeead32c7e0db01d6f69140a9269e656eb5096528b /pkgs/applications/science
parentd7c70809e6e5567fc98ed332503a99935eca2d03 (diff)
downloadnixpkgs-ead6bc4a57da107357527d5f8d20350cfc8102d0.tar
nixpkgs-ead6bc4a57da107357527d5f8d20350cfc8102d0.tar.gz
nixpkgs-ead6bc4a57da107357527d5f8d20350cfc8102d0.tar.bz2
nixpkgs-ead6bc4a57da107357527d5f8d20350cfc8102d0.tar.lz
nixpkgs-ead6bc4a57da107357527d5f8d20350cfc8102d0.tar.xz
nixpkgs-ead6bc4a57da107357527d5f8d20350cfc8102d0.tar.zst
nixpkgs-ead6bc4a57da107357527d5f8d20350cfc8102d0.zip
R: run the test suite only when recommended packages are built
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/math/R/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/science/math/R/default.nix b/pkgs/applications/science/math/R/default.nix
index 6bbcba1a5d8..097de96e3e3 100644
--- a/pkgs/applications/science/math/R/default.nix
+++ b/pkgs/applications/science/math/R/default.nix
@@ -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;