mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-12 09:13:14 +00:00
- Gives a nice separation between test app and test configuration - Allows us to cleanly add separate test apps
7 lines
166 B
Python
7 lines
166 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class WagtailTestsAppConfig(AppConfig):
|
|
name = 'wagtail.tests.testapp'
|
|
label = 'tests'
|
|
verbose_name = "Wagtail tests"
|