Merge pull request #168820 from mweinelt/test-python3-requests-aarch64-darwin

python3Packages.requests: disable fatal tests on aarch64-darwin

authored by Martin Weinelt and committed by GitHub ee8559c0 86d2ccf4

+10
+10
pkgs/development/python-modules/requests/default.nix
··· 1 1 { lib 2 + , stdenv 2 3 , brotli 3 4 , brotlicffi 4 5 , buildPythonPackage ··· 66 67 "test_use_proxy_from_environment" 67 68 "TestRequests" 68 69 "TestTimeout" 70 + ] ++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [ 71 + # Fatal Python error: Aborted 72 + "test_basic_response" 73 + "test_text_response" 74 + ]; 75 + 76 + disabledTestPaths = lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [ 77 + # Fatal Python error: Aborted 78 + "tests/test_lowlevel.py" 69 79 ]; 70 80 71 81 pythonImportsCheck = [