forked from mirrors/nixpkgs
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:
parent
7acb961c67
commit
9a8070cdab
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue