Jeff Wright
Jeff Wright
https://en.wikipedia.org/wiki/ANSI_escape_code https://gist.github.com/fnky/458719343aabd01cfb17a3a4f7296797 https://notes.burke.libbey.me/ansi-escape-codes/
The following code decodes the `unmarked_output.bin` output file from `pytest-tui`, and provides a list of unique ANSI SVG codes: ``` import fire import re from pathlib import Path def decode_ansi(lines:...
I wrestled with the same issue when writing the code to create an HTML report in [pytest-tui](https://github.com/jeffwright13/pytest-tui/). I ended up providing the user with three choices as workarounds: 1) invert...