Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #234125 from reckenrode/keyring-darwin-sandbox

python3Packages.keyring: disable tests that fail with Darwin sandbox

authored by Mario Rodas and committed by GitHub abb01bca db508e06

Changed files
+3 -1
pkgs
development
python-modules
keyring
+3 -1
pkgs/development/python-modules/keyring/default.nix
··· 47 47 48 48 disabledTestPaths = [ 49 49 "tests/backends/test_macOS.py" 50 - ]; 50 + ] 51 + # These tests fail when sandboxing is enabled because they are unable to get a password from keychain. 52 + ++ lib.optional stdenv.isDarwin "tests/test_multiprocess.py"; 51 53 52 54 meta = with lib; { 53 55 description = "Store and access your passwords safely";