python311Packages.yarl: Disable failing test

This commit is contained in:
Martin Weinelt 2023-01-01 02:20:50 +01:00
parent f7d835e5e9
commit 5da6234fe3

View file

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonAtLeast
, pythonOlder
, idna
, multidict
@ -41,6 +42,10 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = lib.optionals (pythonAtLeast "3.11") [
"test_not_a_scheme2"
];
postCheck = ''
popd
'';