Commit 7568ee06 authored by Connor Baker's avatar Connor Baker
Browse files

python3Packages.apricot-select: disable tests by default

They can run for hours on Hydra: https://hydra.nixos.org/build/261011861
parent b1c46e1d
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  apricot-select,
  numba,
  numpy,
  pynose,
@@ -66,6 +67,11 @@ buildPythonPackage rec {
    "test_digits_sqrt_modular_sparse"
  ];

  # NOTE: Tests are disabled by default because they can run for hours and timeout on Hydra.
  doCheck = false;

  passthru.tests.check = apricot-select.overridePythonAttrs { doCheck = true; };

  meta = with lib; {
    description = "Module for submodular optimization for the purpose of selecting subsets of massive data sets";
    homepage = "https://github.com/jmschrei/apricot";