We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Writing coloured output to the Git Bash terminal on Windows using click is challenging using the builtin functions because it uses colorama which struggles with this. Pytest seems to have cracked it with code like this: https://github.com/pytest-dev/pytest/blob/4e3dd21506a9e543c04c63ebff966a9b604d2b9e/src/_pytest/_io/terminalwriter.py#L73
click
colorama
The text was updated successfully, but these errors were encountered:
Adding color=True might fix it: pallets/click#2606
Sorry, something went wrong.
Adding color=True does fix it.
Minimal implementation in #24
No branches or pull requests
Writing coloured output to the Git Bash terminal on Windows using
click
is challenging using the builtin functions because it usescolorama
which struggles with this. Pytest seems to have cracked it with code like this:https://github.com/pytest-dev/pytest/blob/4e3dd21506a9e543c04c63ebff966a9b604d2b9e/src/_pytest/_io/terminalwriter.py#L73
The text was updated successfully, but these errors were encountered: