python3Packages.osqp: disable failing tests

Tests fail on pythonPackages.scipy >= 1.5.0.
This was raised in https://github.com/oxfordcontrol/osqp-python/issues/44
They are being addressed in
https://github.com/oxfordcontrol/osqp-python/pull/46,
and should be re-enabled for the next release.
This commit is contained in:
Drew Risinger 2020-08-14 16:49:03 -04:00 committed by Frederik Rietdijk
parent 7acb961c67
commit 9a8070cdab

View file

@ -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";