pythonPackages.cvxopt: re-enable tests (#43566)

This reverts commit 64a64e7483. The issue
was fixed in d2f0fc1f41.
This commit is contained in:
Timo Kaufmann 2018-07-15 14:26:33 +02:00 committed by Robert Schütz
parent 18774d4173
commit 338f71a338

View File

@ -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
'';