Skip to content

Commit

Permalink
python3Packages.osqp: disable failing tests
Browse files Browse the repository at this point in the history
Tests fail on pythonPackages.scipy >= 1.5.0.
This was raised in osqp/osqp-python#44
They are being addressed in
osqp/osqp-python#46,
and should be re-enabled for the next release.
  • Loading branch information
drewrisinger authored and wchresta committed Aug 17, 2020
1 parent 23abb76 commit 66b2212
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkgs/development/python-modules/osqp/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ buildPythonPackage rec {
pythonImportsCheck = [ "osqp" ];
checkInputs = [ pytestCheckHook ];
dontUseSetuptoolsCheck = true; # don't run checks twice
disabledTests = [ "mkl_" ];
disabledTests = [
"mkl_"
"update_matrices_tests" # broken w/ scipy >= 1.5.0. Remove next release. See https://github.com/oxfordcontrol/osqp-python/issues/44
];

meta = with lib; {
description = "The Operator Splitting QP Solver";
Expand Down

0 comments on commit 66b2212

Please sign in to comment.