about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSamuel Ainsworth <skainsworth@gmail.com>2024-02-14 00:48:48 -0500
committerGitHub <noreply@github.com>2024-02-14 00:48:48 -0500
commitd6745ed0142a640829a19586a9e81a6776685169 (patch)
treebd784d3b428d7d0c29969929a2f36cb4ccfe0821
parentcdefe71177b3cdd809faa045b7b6ce8779eacc78 (diff)
parentb1b0947793f10a6fb6dac716ecbea0b384a12024 (diff)
downloadnixlib-d6745ed0142a640829a19586a9e81a6776685169.tar
nixlib-d6745ed0142a640829a19586a9e81a6776685169.tar.gz
nixlib-d6745ed0142a640829a19586a9e81a6776685169.tar.bz2
nixlib-d6745ed0142a640829a19586a9e81a6776685169.tar.lz
nixlib-d6745ed0142a640829a19586a9e81a6776685169.tar.xz
nixlib-d6745ed0142a640829a19586a9e81a6776685169.tar.zst
nixlib-d6745ed0142a640829a19586a9e81a6776685169.zip
Merge pull request #288640 from samuela/samuela/google-auth-oauthlib
python311Packages.google-auth-oauthlib: disable flaky test
-rw-r--r--pkgs/development/python-modules/google-auth-oauthlib/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/google-auth-oauthlib/default.nix b/pkgs/development/python-modules/google-auth-oauthlib/default.nix
index 2a24f4c04b03..5894c2080ffb 100644
--- a/pkgs/development/python-modules/google-auth-oauthlib/default.nix
+++ b/pkgs/development/python-modules/google-auth-oauthlib/default.nix
@@ -33,7 +33,10 @@ buildPythonPackage rec {
     pytestCheckHook
   ];
 
-  disabledTests = lib.optionals stdenv.isDarwin [
+  disabledTests = [
+    # Flaky test. See https://github.com/NixOS/nixpkgs/issues/288424#issuecomment-1941609973.
+    "test_run_local_server_occupied_port"
+  ] ++ lib.optionals stdenv.isDarwin [
     # This test fails if the hostname is not associated with an IP (e.g., in `/etc/hosts`).
     "test_run_local_server_bind_addr"
   ];