python3Packages.requests: disable fatal tests on aarch64-darwin
This commit is contained in:
parent
86d2ccf412
commit
9043d626c4
1 changed files with 10 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, brotli
|
||||
, brotlicffi
|
||||
, buildPythonPackage
|
||||
|
@ -66,6 +67,15 @@ buildPythonPackage rec {
|
|||
"test_use_proxy_from_environment"
|
||||
"TestRequests"
|
||||
"TestTimeout"
|
||||
] ++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [
|
||||
# Fatal Python error: Aborted
|
||||
"test_basic_response"
|
||||
"test_text_response"
|
||||
];
|
||||
|
||||
disabledTestPaths = lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [
|
||||
# Fatal Python error: Aborted
|
||||
"tests/test_lowlevel.py"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
|
|
Loading…
Reference in a new issue