Skip to content

Commit

Permalink
python3.pkgs.aiohttp: disable failing python 3.8 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
FRidh committed Jun 11, 2020
1 parent 13add13 commit b8f7c6e
Showing 1 changed file with 28 additions and 17 deletions.
45 changes: 28 additions & 17 deletions pkgs/development/python-modules/aiohttp/default.nix
Expand Up @@ -12,7 +12,7 @@
, idna-ssl
, typing-extensions
, pytestrunner
, pytest
, pytestCheckHook
, gunicorn
, pytest-timeout
, async_generator
Expand All @@ -22,42 +22,53 @@
, trustme
, brotlipy
, freezegun
, isPy38
}:

buildPythonPackage rec {
pname = "aiohttp";
version = "3.6.2";
# https://github.com/aio-libs/aiohttp/issues/4525 python3.8 failures
disabled = pythonOlder "3.5" || pythonAtLeast "3.8";
disabled = pythonOlder "3.5";

src = fetchPypi {
inherit pname version;
sha256 = "09pkw6f1790prnrq0k8cqgnf1qy57ll8lpmc6kld09q7zw4vi6i5";
};

checkInputs = [
pytestrunner pytest gunicorn async_generator pytest_xdist
pytestrunner pytestCheckHook gunicorn async_generator pytest_xdist
pytest-mock pytestcov trustme brotlipy freezegun
];

propagatedBuildInputs = [ attrs chardet multidict async-timeout yarl ]
++ lib.optionals (pythonOlder "3.7") [ idna-ssl typing-extensions ];

# disable tests which attempt to do loopback connections
checkPhase = ''
disabledTests = [
# disable tests which attempt to do loopback connections
"get_valid_log_format_exc"
"test_access_logger_atoms"
"aiohttp_request_coroutine"
"server_close_keepalive_connection"
"connector"
"client_disconnect"
"handle_keepalive_on_closed_connection"
"proxy_https_bad_response"
"partially_applied_handler"
"middleware"
] ++ lib.optionals stdenv.is32bit [
"test_cookiejar"
] ++ lib.optionals isPy38 [
# Python 3.8 https://github.com/aio-libs/aiohttp/issues/4525
"test_read_boundary_with_incomplete_chunk"
"test_read_incomplete_chunk"
"test_request_tracing_exception"
];

# aiohttp in current folder shadows installed version
# Probably because we run `python -m pytest` instead of `pytest` in the hook.
preCheck = ''
cd tests
pytest -k "not get_valid_log_format_exc \
and not test_access_logger_atoms \
and not aiohttp_request_coroutine \
and not server_close_keepalive_connection \
and not connector \
and not client_disconnect \
and not handle_keepalive_on_closed_connection \
and not proxy_https_bad_response \
and not partially_applied_handler \
${lib.optionalString stdenv.is32bit "and not test_cookiejar"} \
and not middleware" \
--ignore=test_connector.py
'';

meta = with lib; {
Expand Down

0 comments on commit b8f7c6e

Please sign in to comment.