Skip to content

Commit

Permalink
pythonPackages.pycurl: disable flakey memory tests
Browse files Browse the repository at this point in the history
(cherry picked from commit 95e3e3e)
  • Loading branch information
Jonathan Ringer committed Jan 22, 2020
1 parent 5d6da42 commit 0fe895a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkgs/development/python-modules/pycurl/default.nix
Expand Up @@ -35,13 +35,16 @@ buildPythonPackage rec {
flaky
];

# skip impure or flakey tests
checkPhase = ''
pytest tests -k "not test_ssl_in_static_libs \
and not test_keyfunction \
and not test_keyfunction_bogus_return \
and not test_libcurl_ssl_gnutls \
and not test_libcurl_ssl_nss \
and not test_libcurl_ssl_openssl"
and not test_libcurl_ssl_openssl" \
--ignore=tests/getinfo_test.py \
--ignore=tests/memory_mgmt_test.py
'';

preConfigure = ''
Expand Down

0 comments on commit 0fe895a

Please sign in to comment.