python311Packages.trio-asyncio: disable failing test

Disabled a failing test, that has not been updated with Python 3.11 in
mind.

+5
+5
pkgs/development/python-modules/trio-asyncio/default.nix
··· 6 , sniffio 7 , pytest-trio 8 , pytestCheckHook 9 , pythonOlder 10 }: 11 ··· 47 48 disabledTestPaths = [ 49 "tests/python" # tries to import internal API test.test_asyncio 50 ]; 51 52 pythonImportsCheck = [
··· 6 , sniffio 7 , pytest-trio 8 , pytestCheckHook 9 + , pythonAtLeast 10 , pythonOlder 11 }: 12 ··· 48 49 disabledTestPaths = [ 50 "tests/python" # tries to import internal API test.test_asyncio 51 + ]; 52 + 53 + disabledTests = lib.optionals (pythonAtLeast "3.11") [ 54 + "test_run_task" 55 ]; 56 57 pythonImportsCheck = [