pythonPackages.pycurl: disable flakey memory tests

This commit is contained in:
Jonathan Ringer 2019-10-26 10:44:00 -07:00 committed by Jon
parent 645c9a672b
commit 95e3e3e0a8

View file

@ -35,6 +35,7 @@ buildPythonPackage rec {
flaky
];
# skip impure or flakey tests
checkPhase = ''
HOME=$TMPDIR pytest tests -k "not test_ssl_in_static_libs \
and not test_keyfunction \
@ -42,7 +43,8 @@ buildPythonPackage rec {
and not test_libcurl_ssl_gnutls \
and not test_libcurl_ssl_nss \
and not test_libcurl_ssl_openssl" \
--ignore=tests/getinfo_test.py
--ignore=tests/getinfo_test.py \
--ignore=tests/memory_mgmt_test.py
'';
preConfigure = ''