mirror of
https://github.com/jazzband/django-analytical.git
synced 2026-03-16 22:20:25 +00:00
Add missing apps to chartbeat tests settings
This commit is contained in:
parent
f8b820c1db
commit
9144118f80
1 changed files with 6 additions and 1 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in a new issue