Merge pull request #288640 from samuela/samuela/google-auth-oauthlib

python311Packages.google-auth-oauthlib: disable flaky test
This commit is contained in:
Samuel Ainsworth 2024-02-14 00:48:48 -05:00 committed by GitHub
commit d6745ed014
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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"
];