I upgraded from Django 1.10.4 to 1.11.1 and all of a sudden I\'m getting a ton of these messages when I run my tests:
lib/python3.5/site-packages/rest_framework/
In my case, I had to add order_by('id') instead of ordering.
order_by('id')
ordering
class IntakeCaseViewSet(viewsets.ModelViewSet): schema = None queryset = IntakeCase.objects.all().order_by('id')