Skip to content

Commit

Permalink
python3Packages.apricot-select: disable tests by default
Browse files Browse the repository at this point in the history
They can run for hours on Hydra: https://hydra.nixos.org/build/261011861
  • Loading branch information
ConnorBaker committed May 27, 2024
1 parent b1c46e1 commit 7568ee0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pkgs/development/python-modules/apricot-select/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
apricot-select,
numba,
numpy,
pynose,
Expand Down Expand Up @@ -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";
Expand Down

0 comments on commit 7568ee0

Please sign in to comment.