about summary refs log tree commit diff
path: root/pkgs/development/python-modules/osqp
diff options
context:
space:
mode:
authorDrew Risinger <drewrisinger@users.noreply.github.com>2020-08-14 16:49:03 -0400
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-08-15 12:04:46 +0200
commit9a8070cdab61ae96c09ae820735c666b9c6bb2df (patch)
tree678f669ed63426d0c85c4037582f13058296b4b8 /pkgs/development/python-modules/osqp
parent7acb961c670c49ccc5cd15774f7a205947f5efbc (diff)
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.
Diffstat (limited to 'pkgs/development/python-modules/osqp')
-rw-r--r--pkgs/development/python-modules/osqp/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/osqp/default.nix b/pkgs/development/python-modules/osqp/default.nix
index 16997d6678129..88189493a62fe 100644
--- a/pkgs/development/python-modules/osqp/default.nix
+++ b/pkgs/development/python-modules/osqp/default.nix
@@ -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";