I have upgraded Django from 1.8.5 to 1.9. Running my tests fails with this:
RuntimeError: maximum recursion depth exceeded while calling a Python object
My INSTALLED_APPS:
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'form_utils',
'django_fsm',
'django_fsm_log',
'compressor',
'rest_framework',
'rest_framework.authtoken',
'django_js_reverse',
'bootstrap3',
'timezone_field',
'builds',
'accounts',
'api',
'process',
)
I’m in the process of filtering this, but if anyone has some idea, don’t hesitate to share :)
Best,
Gergely