python311Packages.rich: disable failing tests

These are due to mismatching expectations with pygments 2.16.1.
This commit is contained in:
Martin Weinelt
2023-09-27 15:34:40 +02:00
parent 08781ce85e
commit 6e5d2c7e83
@@ -46,6 +46,20 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = [
# pygments 2.16 compat
# https://github.com/Textualize/rich/issues/3088
"test_card_render"
"test_markdown_render"
"test_markdown_render"
"test_python_render"
"test_python_render_simple"
"test_python_render_simple_passing_lexer_instance"
"test_python_render_indent_guides"
"test_option_no_wrap"
"test_syntax_highlight_ranges"
];
pythonImportsCheck = [
"rich"
];