about 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 14:26:33 +0200
committerRobert Schütz <rschuetz17@gmail.com>2018-07-15 14:26:33 +0200
commit338f71a3382836f4ea80d57cd383673574989fe5 (patch)
treee08b6410fd0ac1123d3f2d67a49ef9119a078ddb /pkgs/development/python-modules/cvxopt
parent18774d4173103f9274d769e36feaf8d922587e92 (diff)
downloadnixlib-338f71a3382836f4ea80d57cd383673574989fe5.tar
nixlib-338f71a3382836f4ea80d57cd383673574989fe5.tar.gz
nixlib-338f71a3382836f4ea80d57cd383673574989fe5.tar.bz2
nixlib-338f71a3382836f4ea80d57cd383673574989fe5.tar.lz
nixlib-338f71a3382836f4ea80d57cd383673574989fe5.tar.xz
nixlib-338f71a3382836f4ea80d57cd383673574989fe5.tar.zst
nixlib-338f71a3382836f4ea80d57cd383673574989fe5.zip
pythonPackages.cvxopt: re-enable tests (#43566)
This reverts commit 64a64e7483581b2ea64b48a74671681176d14631. The issue
was fixed in d2f0fc1f414290b399301f284329b791c010ee85.
Diffstat (limited to 'pkgs/development/python-modules/cvxopt')
-rw-r--r--pkgs/development/python-modules/cvxopt/default.nix5
1 files changed, 0 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/cvxopt/default.nix b/pkgs/development/python-modules/cvxopt/default.nix
index 906e2c0bbe4a..e17bd38da02b 100644
--- a/pkgs/development/python-modules/cvxopt/default.nix
+++ b/pkgs/development/python-modules/cvxopt/default.nix
@@ -46,11 +46,6 @@ 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
   '';