New comment by sgn on void-packages repository https://github.com/void-linux/void-packages/pull/24929#issuecomment-693112125 Comment: Anyway, the check is still failing because pytest people seems to assume that their tests is running with not-`dumb` terminal. ``` FAILED testing/io/test_terminalwriter.py::test_code_highlight[with markup and code_highlight] FAILED testing/test_terminal.py::test_color_yes - Failed: fnmatch: '\x1b[[]1m... FAILED testing/test_terminal.py::TestCodeHighlight::test_code_highlight_simple FAILED testing/test_terminal.py::TestCodeHighlight::test_code_highlight_continuation ``` Maybe just ignore it? ```diff diff --git a/srcpkgs/python3-pytest/template b/srcpkgs/python3-pytest/template index 48b4d043c9..646b638731 100644 --- a/srcpkgs/python3-pytest/template +++ b/srcpkgs/python3-pytest/template @@ -28,7 +28,8 @@ post_patch() { } do_check() { - PYTHONPATH=$(pwd)/build/lib python3 -m pytest + PYTHONPATH=$(pwd)/build/lib python3 -m pytest \ + -k 'not test_color_yes and not test_code_highlight' } post_install() { ```