mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 13:04:47 +08:00
add django.contrib.contenttypes to all tests by default
This commit is contained in:
@@ -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\'')
|
||||
|
||||
Reference in New Issue
Block a user