Add missing apps to chartbeat tests settings

This commit is contained in:
Hugo Osvaldo Barrera 2015-12-11 21:41:03 -03:00
parent f8b820c1db
commit 9144118f80

View file

@ -22,7 +22,12 @@ class ChartbeatTagTestCaseNoSites(TestCase):
self.assertTrue('var _sf_async_config={"uid": "12345"};' in r, r)
@override_settings(INSTALLED_APPS=('analytical', 'django.contrib.sites'))
@override_settings(INSTALLED_APPS=(
'analytical',
'django.contrib.sites',
'django.contrib.auth',
'django.contrib.contenttypes',
))
@override_settings(CHARTBEAT_USER_ID='12345')
class ChartbeatTagTestCaseWithSites(TestCase):
def setUp(self):