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.
pytest
1 parent 48a0974 commit 5977470Copy full SHA for 5977470
conftest.py
@@ -13,7 +13,7 @@ def pytest_configure():
13
databases = {"default": {"ENGINE": "django.db.backends.sqlite3",}}
14
15
installed_apps = [
16
- "example.coffee",
+ "example.coffee.apps.Config",
17
]
18
19
unicorn_settings = {
example/coffee/__init__.py
@@ -1 +1 @@
1
-default_app_config = "coffee.apps.CoffeeConfig"
+default_app_config = "coffee.apps.Config"
example/coffee/apps.py
@@ -1,5 +1,5 @@
from django.apps import AppConfig
2
3
4
-class CoffeeConfig(AppConfig):
+class Config(AppConfig):
5
name = "example.coffee"
0 commit comments