summary refs log tree commit diff
path: root/pkgs/development/python-modules/cvxopt
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2018-07-15 12:20:47 +0200
committerRobert Schütz <rschuetz17@gmail.com>2018-07-15 12:20:47 +0200
commit64a64e7483581b2ea64b48a74671681176d14631 (patch)
tree5f1427f6cb5a702df4966036b72611fcbb5b6488 /pkgs/development/python-modules/cvxopt
parentba8cb47905ab85a71443bb2a0570366ce938f61c (diff)
downloadnixpkgs-64a64e7483581b2ea64b48a74671681176d14631.tar
nixpkgs-64a64e7483581b2ea64b48a74671681176d14631.tar.gz
nixpkgs-64a64e7483581b2ea64b48a74671681176d14631.tar.bz2
nixpkgs-64a64e7483581b2ea64b48a74671681176d14631.tar.lz
nixpkgs-64a64e7483581b2ea64b48a74671681176d14631.tar.xz
nixpkgs-64a64e7483581b2ea64b48a74671681176d14631.tar.zst
nixpkgs-64a64e7483581b2ea64b48a74671681176d14631.zip
pythonPackages.cvxopt: temporarily disable tests (#43564)
The tests have transient failures that will be fixed once staging is
merged.
Diffstat (limited to 'pkgs/development/python-modules/cvxopt')
-rw-r--r--pkgs/development/python-modules/cvxopt/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/cvxopt/default.nix b/pkgs/development/python-modules/cvxopt/default.nix
index e17bd38da02..906e2c0bbe4 100644
--- a/pkgs/development/python-modules/cvxopt/default.nix
+++ b/pkgs/development/python-modules/cvxopt/default.nix
@@ -46,6 +46,11 @@ buildPythonPackage rec {
     export CVXOPT_FFTW_INC_DIR=${fftw.dev}/include
   '';
 
+  # https://github.com/cvxopt/cvxopt/issues/122
+  # This is fixed on staging (by #43234, status 2018-07-15), but until that
+  # lands we should disable the tests. Otherwise the 99% of use cases that
+  # should be unaffected by that failure are affected.
+  doCheck = false;
   checkPhase = ''
     ${python.interpreter} -m unittest discover -s tests
   '';