Merge pull request #158662 from fabaff/fix-aiosmtpd

python3Packages.aiosmtpd: disable tests on Python > 3.9
This commit is contained in:
Fabian Affolter 2022-02-10 22:40:22 +01:00 committed by GitHub
commit 154855a4a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,6 +35,9 @@ buildPythonPackage rec {
pytestCheckHook
];
# Fixes for Python 3.10 can't be applied easily, https://github.com/aio-libs/aiosmtpd/pull/294
doCheck = pythonOlder "3.10";
disabledTests = [
# Requires git
"test_ge_master"