From: Richard Si <63936253+ichard26@users.noreply.github.com> Date: Wed, 30 Mar 2022 20:40:50 +0000 (-0400) Subject: Keep tests working w/ upcoming aiohttp 4.0.0 (#2974) X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/82e150a13ac78a1f24de27977d8a40883bc3d6e7?hp=82e150a13ac78a1f24de27977d8a40883bc3d6e7 Keep tests working w/ upcoming aiohttp 4.0.0 (#2974) aiohttp.test_utils.unittest_run_loop was deprecated since aiohttp 3.8 and aiohttp 4 (which isn't a thing quite yet) removes it. To maintain compatibility with the full range of versions we declare to support, test_blackd.py will now define a no-op replacement if it can't be imported. Also, mypy is painfully slow to use without a cache, let's reenable it. ---