Skip to content

Commit f4eca4a

Browse files
committed
[fix:tests] Fixed order of openwisp modules in INSTALLED_APPS
The INSTALLED_APPS setting in the dev env was not up to date.
1 parent 4ab982f commit f4eca4a

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

tests/openwisp2/settings.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,25 +47,25 @@
4747
"django.contrib.gis",
4848
# all-auth
4949
"django.contrib.sites",
50+
"openwisp_users.accounts",
5051
"allauth",
5152
"allauth.account",
5253
"allauth.socialaccount",
5354
"django_extensions",
54-
"django_filters",
5555
# openwisp2 modules
56+
"openwisp_users",
5657
"openwisp_controller.config",
57-
"openwisp_controller.connection",
5858
"openwisp_controller.pki",
5959
"openwisp_controller.geo",
60-
"openwisp_users",
60+
"openwisp_controller.connection",
61+
"openwisp_controller.subnet_division",
62+
"openwisp_notifications",
6163
"openwisp_ipam",
6264
# monitoring
6365
"openwisp_monitoring.monitoring",
6466
"openwisp_monitoring.device",
6567
"openwisp_monitoring.check",
6668
"nested_admin",
67-
# notifications
68-
"openwisp_notifications",
6969
# admin
7070
# openwisp2 admin theme
7171
# (must be loaded here)
@@ -82,6 +82,7 @@
8282
"rest_framework",
8383
"rest_framework.authtoken",
8484
"rest_framework_gis",
85+
"django_filters",
8586
"drf_yasg",
8687
# channels
8788
"channels",

0 commit comments

Comments
 (0)