新增加一个应用模块,专门用于功能测试

This commit is contained in:
ngfchl
2022-09-13 13:21:18 +08:00
parent 99c3a3f27e
commit 14dbd7f3ff
11 changed files with 366 additions and 1 deletions

View File

@@ -48,6 +48,7 @@ INSTALLED_APPS = [
'import_export',
'django_apscheduler',
'pt_site',
'pt_test',
'auto_pt',
]

View File

@@ -28,6 +28,7 @@ urlpatterns = [
path('', index),
path(r'admin/', admin.site.urls),
path(r'tasks/', include("auto_pt.urls"), name='tasks'), #
path(r'site/', include("pt_site.urls"), name='tasks') #
path(r'site/', include("pt_site.urls"), name='tasks'), #
path(r'test/', include("pt_test.urls"), name='test'), #
]