Skip to content

Commit

Permalink
Closes #1384 (#1454)
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn authored Feb 10, 2021
1 parent 9729161 commit def0927
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,23 @@
# Installed apps for development only:

INSTALLED_APPS += (
# Better debug:
'debug_toolbar',
'nplusone.ext.django',

# Linting migrations:
'django_migration_linter',

# django-test-migrations:
'django_test_migrations.contrib.django_checks.AutoNames',
# This check might be useful in production as well,
# so it might be a good idea to move `django-test-migrations`
# to prod dependencies and use this check in the main `settings.py`.
# This will check that your database is configured properly,
# when you run `python manage.py check` before deploy.
'django_test_migrations.contrib.django_checks.DatabaseConfiguration',

# django-extra-checks:
'extra_checks',
)

Expand Down

0 comments on commit def0927

Please sign in to comment.