Diff rich-13.5.3 with a rich-13.6.0

/usr/portage/dev-python/rich/rich-13.6.0.ebuild 2023-10-09 14:52:30.368368372 +0300
31 31
distutils_enable_tests pytest
32 32

  
33 33
python_test() {
34
	local -x COLUMNS=80
35 34
	local EPYTEST_DESELECT=(
36 35
		# TODO
37 36
		tests/test_console.py::test_size_can_fall_back_to_std_descriptors
38
		tests/test_inspect.py::test_inspect_integer_with_methods_python38_and_python39
39
		# pygments?
40
		tests/test_syntax.py::test_python_render_simple_indent_guides
41
		tests/test_syntax.py::test_python_render_line_range_indent_guides
42
		tests/test_card.py::test_card_render
43
		tests/test_markdown.py::test_markdown_render
44
		tests/test_markdown_no_hyperlinks.py::test_markdown_render
45
		tests/test_syntax.py::test_python_render
46
		tests/test_syntax.py::test_python_render_simple
47
		tests/test_syntax.py::test_python_render_simple_passing_lexer_instance
48
		tests/test_syntax.py::test_python_render_indent_guides
49
		tests/test_syntax.py::test_option_no_wrap
50
		tests/test_syntax.py::test_syntax_highlight_ranges
51 37
	)
52 38
	# version-specific output -- the usual deal
53 39
	case ${EPYTHON} in
......
57 43
				tests/test_inspect.py::test_inspect_integer_with_methods_python310only
58 44
			)
59 45
			;;
60
		python3.12)
61
			EPYTEST_DESELECT+=(
62
				tests/test_inspect.py::test_inspect_builtin_function_except_python311
63
				tests/test_inspect.py::test_inspect_integer_with_methods_python310only
64
				tests/test_inspect.py::test_inspect_integer_with_methods_python311_and_above
65
				tests/test_pretty.py::test_attrs_broken
66
			)
67
			;;
68 46
	esac
69
	epytest -p no:pytest-qt
47

  
48
	local -x COLUMNS=80
49
	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
50
	epytest
70 51
}
71 52

  
72 53
pkg_postinst() {
Thank you!