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
Upgrading to djangorestframework 3.2.3, tests throw this :
Traceback (most recent call last):
File "projects/xyz/core/tests/test_accounts.py", line 60, in test_can_list_accounts
response = self.client.get('/api/accounts/', format='json')
File ".virtualenvs/xyz/lib/python3.4/site-packages/rest_framework/test.py", line 162, in get
response = super(APIClient, self).get(path, data=data, **extra)
File ".virtualenvs/xyz/lib/python3.4/site-packages/rest_framework/test.py", line 88, in get
return self.generic('GET', path, **r)
File ".virtualenvs/xyz/lib/python3.4/site-packages/django/test/client.py", line 379, in generic
return self.request(**r)
File ".virtualenvs/xyz/lib/python3.4/site-packages/rest_framework/test.py", line 159, in request
return super(APIClient, self).request(**kwargs)
File ".virtualenvs/xyz/lib/python3.4/site-packages/rest_framework/test.py", line 111, in request
request = super(APIRequestFactory, self).request(**kwargs)
File ".virtualenvs/xyz/lib/python3.4/site-packages/django/test/client.py", line 466, in request
six.reraise(*exc_info)
File ".virtualenvs/xyz/lib/python3.4/site-packages/django/utils/six.py", line 659, in reraise
raise value
File ".virtualenvs/xyz/lib/python3.4/site-packages/django/core/handlers/base.py", line 132, in get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File ".virtualenvs/xyz/lib/python3.4/site-packages/django/views/decorators/csrf.py", line 58, in wrapped_view
return view_func(*args, **kwargs)
File ".virtualenvs/xyz/lib/python3.4/site-packages/rest_framework/viewsets.py", line 87, in view
return self.dispatch(request, *args, **kwargs)
File ".virtualenvs/xyz/lib/python3.4/site-packages/rest_framework/views.py", line 466, in dispatch
response = self.handle_exception(exc)
File ".virtualenvs/xyz/lib/python3.4/site-packages/rest_framework/views.py", line 463, in dispatch
response = handler(request, *args, **kwargs)
File ".virtualenvs/xyz/lib/python3.4/site-packages/rest_framework/mixins.py", line 40, in list
queryset = self.filter_queryset(self.get_queryset())
File ".virtualenvs/xyz/lib/python3.4/site-packages/rest_framework/generics.py", line 151, in filter_queryset
queryset = backend().filter_queryset(self.request, queryset, self)
File ".virtualenvs/xyz/lib/python3.4/site-packages/rest_framework/filters.py", line 107, in filter_queryset
for search_field in search_fields
TypeError: 'NoneType' object is not iterable
The following requirements work fine with tests suite
Error
Upgrading to djangorestframework
3.2.3
, tests throw this :Test
Views
Serializer
Questions
The
3.2.3
release only speak about Added regex style to SearchFilter. (#3316).Any suggestion what's the matter here?
The text was updated successfully, but these errors were encountered: