Skip to content

Commit

Permalink
pycurl: Exclude another flaky test. Fixes #77304
Browse files Browse the repository at this point in the history
(cherry picked from commit d29a4e4)
  • Loading branch information
nh2 authored and Jon committed Jun 15, 2020
1 parent db0200e commit ae27952
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 @@ -36,6 +36,8 @@ buildPythonPackage rec {
];

# skip impure or flakey tests
# See also:
# * https://github.com/NixOS/nixpkgs/issues/77304
checkPhase = ''
HOME=$TMPDIR pytest tests -k "not test_ssl_in_static_libs \
and not test_keyfunction \
Expand All @@ -44,7 +46,8 @@ buildPythonPackage rec {
and not test_libcurl_ssl_nss \
and not test_libcurl_ssl_openssl" \
--ignore=tests/getinfo_test.py \
--ignore=tests/memory_mgmt_test.py
--ignore=tests/memory_mgmt_test.py \
--ignore=tests/multi_memory_mgmt_test.py
'';

preConfigure = ''
Expand Down

0 comments on commit ae27952

Please sign in to comment.