add django.contrib.contenttypes to all tests by default

This commit is contained in:
Maxim Kurnikov
2019-07-18 19:36:56 +03:00
parent 07a9bcd4cb
commit bba6f769b5
4 changed files with 2 additions and 7 deletions

View File

@@ -26,10 +26,8 @@ class NewSemanalDjangoTestItem(YamlTestItem):
installed_apps = self.parsed_test_data.get('installed_apps', None)
if installed_apps is not None:
if not installed_apps:
installed_apps_as_str = '()'
else:
installed_apps_as_str = '(' + ','.join([repr(app) for app in installed_apps]) + ',)'
installed_apps += ['django.contrib.contenttypes']
installed_apps_as_str = '(' + ','.join([repr(app) for app in installed_apps]) + ',)'
pyproject_toml_file = File(path='pyproject.toml',
content='[tool.django-stubs]\ndjango_settings_module=\'mysettings\'')