We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e909b0 commit 92976d7Copy full SHA for 92976d7
quicktest.py
@@ -55,10 +55,11 @@ def run_tests(self):
55
'NAME': os.path.join(self.DIRNAME, 'database.db'),
56
}
57
58
+ apps = list(set(app.split(".")[0] for app in self.apps))
59
conf = {
60
'DATABASES': databases,
61
'DEFAULT_AUTO_FIELD': 'django.db.models.BigAutoField',
- 'INSTALLED_APPS': self.INSTALLED_APPS + self.apps,
62
+ 'INSTALLED_APPS': self.INSTALLED_APPS + apps,
63
'STATIC_URL': '/static/',
64
'MIDDLEWARE': [
65
'django.contrib.auth.middleware.AuthenticationMiddleware',
0 commit comments