You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can we have colored output in the test results view like it now is with pytest for python? It would help a lot with looking for failed tests through the muddy logs.
The text was updated successfully, but these errors were encountered:
In the code, VUnit is called with the --no-color option.
This simplifies parsing the output from VUnit.
By default, VUnit provides a colored output. As a result, the colored output contains special characters for displaying the colors.
Hypothetically, it would be possible to pass the original output to the test results by omitting --no-color.
For parsing the actual output (testcase PASSED|FAILED...), the output must be filtered to discard the special characters.
If it's only a parsing challenge on the fail/pass, then it seems worth a try. I could help but developing and testing extensions looks like it needs its own whole weekend to burn.
Can we have colored output in the test results view like it now is with pytest for python? It would help a lot with looking for failed tests through the muddy logs.
The text was updated successfully, but these errors were encountered: