I updated a Django 1.7 project to Django 1.8 and now get errors when I run the tests (that are subclasses of django.test.TestCase).
django.test.TestCase
Traceback (most
I had a similar problem where a TestCase used setUpClass but did not have a tearDownClass method. My tests pass when I add an empty one:
TestCase
setUpClass
tearDownClass
@classmethod def tearDownClass(cls): pass
I also do not call django.setup.
django.setup