summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorNiklas Hambüchen <mail@nh2.me>2020-06-05 15:49:58 +0200
committerJon <jonringer@users.noreply.github.com>2020-06-09 16:46:14 -0700
commit7440f0f3862abcee9c352d8e898ff7da279a2780 (patch)
treeab1375b6707a2c699955bcad714925da5f9ca759 /pkgs
parent4f67c0cc6c6e5e6d2a40a55a0f8465b1a567aab8 (diff)
downloadnixpkgs-7440f0f3862abcee9c352d8e898ff7da279a2780.tar
nixpkgs-7440f0f3862abcee9c352d8e898ff7da279a2780.tar.gz
nixpkgs-7440f0f3862abcee9c352d8e898ff7da279a2780.tar.bz2
nixpkgs-7440f0f3862abcee9c352d8e898ff7da279a2780.tar.lz
nixpkgs-7440f0f3862abcee9c352d8e898ff7da279a2780.tar.xz
nixpkgs-7440f0f3862abcee9c352d8e898ff7da279a2780.tar.zst
nixpkgs-7440f0f3862abcee9c352d8e898ff7da279a2780.zip
pycurl: Exclude another flaky test. Fixes #77304
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/pycurl/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pycurl/default.nix b/pkgs/development/python-modules/pycurl/default.nix
index e65ae7a167b..6b6aad2b234 100644
--- a/pkgs/development/python-modules/pycurl/default.nix
+++ b/pkgs/development/python-modules/pycurl/default.nix
@@ -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 = ''