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

python3Packages.aiohttp: fix tests

+2 -6
+2 -6
pkgs/development/python-modules/aiohttp/default.nix
··· 40 40 propagatedBuildInputs = [ attrs chardet multidict async-timeout yarl ] 41 41 ++ lib.optionals (pythonOlder "3.7") [ idna-ssl typing-extensions ]; 42 42 43 - # Don't error on cryptography deprecation warning 44 - postPatch = '' 45 - substituteInPlace pytest.ini --replace "filterwarnings = error" "" 43 + checkPhase = '' 44 + pytest -k "not test__get_valid_log_format_exc and not test_access_logger_atoms" 46 45 ''; 47 - 48 - # coroutine 'noop2' was never awaited 49 - doCheck = false; 50 46 51 47 meta = with lib; { 52 48 description = "Asynchronous HTTP Client/Server for Python and asyncio";