Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pycurl issue 77304 backports 20.03 #90543

Merged
merged 2 commits into from
Jun 15, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
pycurl: Exclude another flaky test. Fixes #77304
(cherry picked from commit d29a4e4)
  • Loading branch information
nh2 committed Jun 15, 2020
commit 28db0bb51f25c7c3da2dd725604a9d6d6474ff98
5 changes: 4 additions & 1 deletion pkgs/development/python-modules/pycurl/default.nix
Original file line number Diff line number Diff line change
@@ -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 \
@@ -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 = ''