Merge pull request #122297 from mweinelt/python/uvloop
python3Packages.uvloop: disable problematic test on aarch64
This commit is contained in:
commit
f5e58926fd
@ -44,8 +44,15 @@ buildPythonPackage rec {
|
|||||||
"--assert=plain"
|
"--assert=plain"
|
||||||
"--strict"
|
"--strict"
|
||||||
"--tb=native"
|
"--tb=native"
|
||||||
|
] ++ lib.optionals (stdenv.isAarch64) [
|
||||||
|
# test gets stuck in epoll_pwait on hydras aarch64 builders
|
||||||
|
# https://github.com/MagicStack/uvloop/issues/412
|
||||||
|
"--deselect" "tests/test_tcp.py::Test_AIO_TCPSSL::test_remote_shutdown_receives_trailing_data"
|
||||||
|
];
|
||||||
|
|
||||||
|
disabledTestPaths = [
|
||||||
# ignore code linting tests
|
# ignore code linting tests
|
||||||
"--ignore=tests/test_sourcecode.py"
|
"tests/test_sourcecode.py"
|
||||||
];
|
];
|
||||||
|
|
||||||
# force using installed/compiled uvloop vs source by moving tests to temp dir
|
# force using installed/compiled uvloop vs source by moving tests to temp dir
|
||||||
|
Loading…
x
Reference in New Issue
Block a user