Skip to content
New issue

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

Improved the terminal colour formatting, Issue #11666 #12304

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

FamousPond
Copy link

Hello,

This PR resolves #11666.

This is my first time contributing to an open source project so please excuse any beginner mistakes.

I used the pull request #11700 as an initial guide as they started to implement this issue but then stopped.

I also know that there are errors with my pull request. I believe that they are all due to do the testing of the terminal output, which I have now changed. I am not sure how to change these tests properly, so have left it for now.

What I did

My goal was to implement the use of the pygment classes TerminalTrueColorFormatter and Terminal256Formatter to get richer colours in the terminal .

To do this I used the same logic as pygments use to get the formatter that is appropriate for the users computer.
https://github.com/pygments/pygments/blob/861fb9131b13241d7ea700fba8f6a38cf6f97285/pygments/cmdline.py#L448-L453C57

I set up the formatter in a way that the users can add their own style by setting the environmental variable PYTEST_THEME . I also added in default styles which will be used if PYTEST_THEME is not set.

Both TerminalTrueColorFormatter and Terminal256Formatter do not have light mode or dark mode options. I therefore created two default styles, one for each. I tried to create the styles as close as I could to the default style of TerminalFormatter. The environmental variable PYTEST_THEME_MODE sets if the light mode or dark mode default style is used. If PYTEST_THEME_MODE is not set dark mode is the default style.

To create the default styles. I made classes at the end of the terminalwiter.py file. If this is the wrong spot for them I am sorry.

Thanks,
James

added in the ability to use pygments TerminalTrueColorFormatter and Terminal256Formatter.

I also created a default format which is similar to the default format in TerminalFormatter.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Use richer colors pygments terminal formatter?
1 participant