django-rainbowtests icon indicating copy to clipboard operation
django-rainbowtests copied to clipboard

This is a custom test runner for Django that gives you *really* colorful test output.

Results 3 django-rainbowtests issues
Sort by recently updated
recently updated
newest added

Please release a new version, compatible with Django 4.0. Thanks for the awesome package! Edit: sorry I thought it doesn't works already

I got unicode character codes printed out instead of actual characters. See ![image](https://user-images.githubusercontent.com/198654/41318304-29dafe70-6e98-11e8-8a11-cb50bb7d3920.png)

Django 3.1 introduced a [`--pdb` option](https://docs.djangoproject.com/en/4.1/ref/django-admin/#cmdoption-test-pdb) effectively using [another result class](https://github.com/django/django/blob/main/django/test/runner.py#L105), `PdbDebugResult`. django-rainbowtest's `RainbowTextTestResult` is not compatible with that option for now. The code has a commented line ```python def...