mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 22:32:58 +03:00
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" ];
|
pythonImportsCheck = [ "osqp" ];
|
||||||
checkInputs = [ pytestCheckHook ];
|
checkInputs = [ pytestCheckHook ];
|
||||||
dontUseSetuptoolsCheck = true; # don't run checks twice
|
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; {
|
meta = with lib; {
|
||||||
description = "The Operator Splitting QP Solver";
|
description = "The Operator Splitting QP Solver";
|
||||||
|
Loading…
Reference in New Issue
Block a user