forked from mirrors/nixpkgs
pythonPackages.pycurl: disable flakey memory tests
This commit is contained in:
parent
645c9a672b
commit
95e3e3e0a8
|
@ -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 = ''
|
||||
|
|
Loading…
Reference in a new issue