yunojuno / django-juno-testrunner

A more useful (and slightly more glamorous) test runner for Django 1.6+ from the folks at YunoJuno
MIT License
7 stars 9 forks source link

Django 1.9 deprecation warning #8

Closed stevejalim closed 8 years ago

stevejalim commented 9 years ago

RemovedInDjango19Warning: django.utils.unittest will be removed in Django 1.9. - worth us getting ahead of the curve and moving away from the bundled unittest

stevejalim commented 9 years ago

...while also keeping 1.6 compatibility

gergelypolonkai commented 8 years ago

From junorunner/extended_runner.py:

try:¬
    # Django 1.6¬
    from django.utils.unittest import result¬
except ImportError:¬
    # Django 1.7+ because bundled unittest is going away¬
    from unittest import result¬

I guess it could be closed…

hugorodgerbrown commented 8 years ago

@Geekfish does #21 supercede this?

Geekfish commented 8 years ago

@hugorodgerbrown no, but looking at the code that was mentioned above I think we're safe. Tests pass fine in 1.9 and 1.10 on the PR.

Geekfish commented 8 years ago

This looks fine, warning may show up before 1.9 but things won't break. Closing.