├── .gitattributes ├── ApiManager ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── managers.cpython-36.pyc │ ├── models.cpython-36.pyc │ ├── tasks.cpython-36.pyc │ └── views.cpython-36.pyc ├── admin.py ├── apps.py ├── managers.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── models.py ├── tasks.py ├── templatetags │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── custom_tags.cpython-36.pyc │ │ └── custom_tags.cpython-37.pyc │ └── custom_tags.py ├── utils │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── common.cpython-36.pyc │ │ ├── common.cpython-37.pyc │ │ ├── emails.cpython-36.pyc │ │ ├── operation.cpython-36.pyc │ │ ├── operation.cpython-37.pyc │ │ ├── pagination.cpython-36.pyc │ │ ├── runner.cpython-36.pyc │ │ ├── task_opt.cpython-36.pyc │ │ ├── task_opt.cpython-37.pyc │ │ └── testcase.cpython-36.pyc │ ├── common.py │ ├── emails.py │ ├── operation.py │ ├── pagination.py │ ├── runner.py │ ├── task_opt.py │ └── testcase.py └── views.py ├── DDLSql.txt ├── HttpRunnerManager ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── activator.cpython-36.pyc │ ├── celery.cpython-36.pyc │ ├── settings.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── wsgi.cpython-36.pyc ├── activator.py ├── celery.py ├── settings.py ├── urls.py └── wsgi.py ├── LICENSE ├── README.md ├── __pycache__ └── manage.cpython-36.pyc ├── celerybeat.pid ├── images ├── add_case01.jpg ├── add_case02.jpg ├── add_case03.jpg ├── add_config.jpg ├── add_module01.jpg ├── add_project01.jpg ├── add_suit.jpg ├── add_tasks.jpg ├── case_list.jpg ├── index01.jpg ├── login.jpg ├── module_list.jpg ├── project_list.jpg ├── regist01.jpg ├── report.jpg ├── report2.jpg └── report_list.jpg ├── logs ├── all.log └── script.log ├── manage.py ├── requirements.txt ├── static └── assets │ ├── css │ ├── admin.css │ ├── common.css │ └── css-index.css │ ├── iconfont │ ├── fonts │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ └── style.css │ ├── img │ ├── bg.jpg │ ├── favicon.ico │ ├── loading.GIF │ ├── logo.png │ └── main_bg.png │ └── js │ ├── app.js │ ├── commons.js │ ├── custom.js │ ├── ext-language_tools.js │ ├── jquery.sticky.js │ ├── owl.carousel.min.js │ └── wow.min.js ├── suite ├── like&2020-12-02-14-32-36-746 │ └── 测试项目 │ │ └── debugtalk.py ├── like&2020-12-02-14-35-57-714 │ └── 测试项目 │ │ └── debugtalk.py ├── like&2020-12-02-14-36-26-801 │ └── 测试项目 │ │ └── debugtalk.py ├── like&2020-12-02-14-36-58-060 │ └── 测试项目 │ │ └── debugtalk.py ├── like&2020-12-02-14-37-22-491 │ └── 测试项目 │ │ └── debugtalk.py ├── like&2020-12-02-14-38-31-524 │ └── 测试项目 │ │ └── debugtalk.py ├── like&2020-12-02-14-40-10-998 │ └── 测试项目 │ │ └── debugtalk.py ├── like&2020-12-02-14-40-24-197 │ └── 测试项目 │ │ └── debugtalk.py ├── like&2020-12-02-14-42-48-650 │ └── 测试项目 │ │ └── debugtalk.py ├── like&2020-12-02-14-43-58-553 │ └── 测试项目 │ │ └── debugtalk.py ├── like&2020-12-02-14-44-02-543 │ └── 测试项目 │ │ └── debugtalk.py ├── like&2020-12-02-14-48-50-288 │ └── 测试项目 │ │ └── debugtalk.py ├── like&2020-12-02-15-00-49-231 │ └── 测试项目 │ │ └── debugtalk.py └── like&2020-12-02-15-02-01-042 │ └── 测试项目 │ └── debugtalk.py ├── templates ├── add_case.html ├── add_config.html ├── add_module.html ├── add_project.html ├── add_robot.html ├── add_suite.html ├── add_task.html ├── base-bak.html ├── base.html ├── config_list.html ├── debugtalk.html ├── debugtalk_list.html ├── echo.html ├── edit_case.html ├── edit_config.html ├── edit_robot.bak.html ├── edit_robot.html ├── edit_suite.html ├── env_list.html ├── error_info.html ├── extent_report_template.html ├── index.html ├── log.html ├── login.html ├── module_list.html ├── periodictask_list.html ├── project_list.html ├── register.html ├── report_list.html ├── report_template.html ├── robot_case_list.html ├── robot_details.html ├── robot_report.html ├── suite_list.html ├── test_list.html └── view_report.html └── uwsgi.ini /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/.gitattributes -------------------------------------------------------------------------------- /ApiManager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/__init__.py -------------------------------------------------------------------------------- /ApiManager/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ApiManager/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /ApiManager/__pycache__/managers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/__pycache__/managers.cpython-36.pyc -------------------------------------------------------------------------------- /ApiManager/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /ApiManager/__pycache__/tasks.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/__pycache__/tasks.cpython-36.pyc -------------------------------------------------------------------------------- /ApiManager/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /ApiManager/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/admin.py -------------------------------------------------------------------------------- /ApiManager/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/apps.py -------------------------------------------------------------------------------- /ApiManager/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/managers.py -------------------------------------------------------------------------------- /ApiManager/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/migrations/0001_initial.py -------------------------------------------------------------------------------- /ApiManager/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ApiManager/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /ApiManager/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ApiManager/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/models.py -------------------------------------------------------------------------------- /ApiManager/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/tasks.py -------------------------------------------------------------------------------- /ApiManager/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ApiManager/templatetags/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/templatetags/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ApiManager/templatetags/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/templatetags/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /ApiManager/templatetags/__pycache__/custom_tags.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/templatetags/__pycache__/custom_tags.cpython-36.pyc -------------------------------------------------------------------------------- /ApiManager/templatetags/__pycache__/custom_tags.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/templatetags/__pycache__/custom_tags.cpython-37.pyc -------------------------------------------------------------------------------- /ApiManager/templatetags/custom_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/templatetags/custom_tags.py -------------------------------------------------------------------------------- /ApiManager/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ApiManager/utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /ApiManager/utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /ApiManager/utils/__pycache__/common.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/utils/__pycache__/common.cpython-36.pyc -------------------------------------------------------------------------------- /ApiManager/utils/__pycache__/common.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/utils/__pycache__/common.cpython-37.pyc -------------------------------------------------------------------------------- /ApiManager/utils/__pycache__/emails.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/utils/__pycache__/emails.cpython-36.pyc -------------------------------------------------------------------------------- /ApiManager/utils/__pycache__/operation.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/utils/__pycache__/operation.cpython-36.pyc -------------------------------------------------------------------------------- /ApiManager/utils/__pycache__/operation.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/utils/__pycache__/operation.cpython-37.pyc -------------------------------------------------------------------------------- /ApiManager/utils/__pycache__/pagination.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/utils/__pycache__/pagination.cpython-36.pyc -------------------------------------------------------------------------------- /ApiManager/utils/__pycache__/runner.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/utils/__pycache__/runner.cpython-36.pyc -------------------------------------------------------------------------------- /ApiManager/utils/__pycache__/task_opt.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/utils/__pycache__/task_opt.cpython-36.pyc -------------------------------------------------------------------------------- /ApiManager/utils/__pycache__/task_opt.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/utils/__pycache__/task_opt.cpython-37.pyc -------------------------------------------------------------------------------- /ApiManager/utils/__pycache__/testcase.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/utils/__pycache__/testcase.cpython-36.pyc -------------------------------------------------------------------------------- /ApiManager/utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/utils/common.py -------------------------------------------------------------------------------- /ApiManager/utils/emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/utils/emails.py -------------------------------------------------------------------------------- /ApiManager/utils/operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/utils/operation.py -------------------------------------------------------------------------------- /ApiManager/utils/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/utils/pagination.py -------------------------------------------------------------------------------- /ApiManager/utils/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/utils/runner.py -------------------------------------------------------------------------------- /ApiManager/utils/task_opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/utils/task_opt.py -------------------------------------------------------------------------------- /ApiManager/utils/testcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/utils/testcase.py -------------------------------------------------------------------------------- /ApiManager/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/ApiManager/views.py -------------------------------------------------------------------------------- /DDLSql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/DDLSql.txt -------------------------------------------------------------------------------- /HttpRunnerManager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/HttpRunnerManager/__init__.py -------------------------------------------------------------------------------- /HttpRunnerManager/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/HttpRunnerManager/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /HttpRunnerManager/__pycache__/activator.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/HttpRunnerManager/__pycache__/activator.cpython-36.pyc -------------------------------------------------------------------------------- /HttpRunnerManager/__pycache__/celery.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/HttpRunnerManager/__pycache__/celery.cpython-36.pyc -------------------------------------------------------------------------------- /HttpRunnerManager/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/HttpRunnerManager/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /HttpRunnerManager/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/HttpRunnerManager/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /HttpRunnerManager/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/HttpRunnerManager/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /HttpRunnerManager/activator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/HttpRunnerManager/activator.py -------------------------------------------------------------------------------- /HttpRunnerManager/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/HttpRunnerManager/celery.py -------------------------------------------------------------------------------- /HttpRunnerManager/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/HttpRunnerManager/settings.py -------------------------------------------------------------------------------- /HttpRunnerManager/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/HttpRunnerManager/urls.py -------------------------------------------------------------------------------- /HttpRunnerManager/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/HttpRunnerManager/wsgi.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/manage.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/__pycache__/manage.cpython-36.pyc -------------------------------------------------------------------------------- /celerybeat.pid: -------------------------------------------------------------------------------- 1 | 15712 2 | -------------------------------------------------------------------------------- /images/add_case01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/images/add_case01.jpg -------------------------------------------------------------------------------- /images/add_case02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/images/add_case02.jpg -------------------------------------------------------------------------------- /images/add_case03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/images/add_case03.jpg -------------------------------------------------------------------------------- /images/add_config.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/images/add_config.jpg -------------------------------------------------------------------------------- /images/add_module01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/images/add_module01.jpg -------------------------------------------------------------------------------- /images/add_project01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/images/add_project01.jpg -------------------------------------------------------------------------------- /images/add_suit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/images/add_suit.jpg -------------------------------------------------------------------------------- /images/add_tasks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/images/add_tasks.jpg -------------------------------------------------------------------------------- /images/case_list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/images/case_list.jpg -------------------------------------------------------------------------------- /images/index01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/images/index01.jpg -------------------------------------------------------------------------------- /images/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/images/login.jpg -------------------------------------------------------------------------------- /images/module_list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/images/module_list.jpg -------------------------------------------------------------------------------- /images/project_list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/images/project_list.jpg -------------------------------------------------------------------------------- /images/regist01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/images/regist01.jpg -------------------------------------------------------------------------------- /images/report.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/images/report.jpg -------------------------------------------------------------------------------- /images/report2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/images/report2.jpg -------------------------------------------------------------------------------- /images/report_list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/images/report_list.jpg -------------------------------------------------------------------------------- /logs/all.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/logs/all.log -------------------------------------------------------------------------------- /logs/script.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/logs/script.log -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/assets/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/static/assets/css/admin.css -------------------------------------------------------------------------------- /static/assets/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/static/assets/css/common.css -------------------------------------------------------------------------------- /static/assets/css/css-index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/static/assets/css/css-index.css -------------------------------------------------------------------------------- /static/assets/iconfont/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/static/assets/iconfont/fonts/icomoon.eot -------------------------------------------------------------------------------- /static/assets/iconfont/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/static/assets/iconfont/fonts/icomoon.svg -------------------------------------------------------------------------------- /static/assets/iconfont/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/static/assets/iconfont/fonts/icomoon.ttf -------------------------------------------------------------------------------- /static/assets/iconfont/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/static/assets/iconfont/fonts/icomoon.woff -------------------------------------------------------------------------------- /static/assets/iconfont/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/static/assets/iconfont/style.css -------------------------------------------------------------------------------- /static/assets/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/static/assets/img/bg.jpg -------------------------------------------------------------------------------- /static/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/static/assets/img/favicon.ico -------------------------------------------------------------------------------- /static/assets/img/loading.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/static/assets/img/loading.GIF -------------------------------------------------------------------------------- /static/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/static/assets/img/logo.png -------------------------------------------------------------------------------- /static/assets/img/main_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/static/assets/img/main_bg.png -------------------------------------------------------------------------------- /static/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/static/assets/js/app.js -------------------------------------------------------------------------------- /static/assets/js/commons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/static/assets/js/commons.js -------------------------------------------------------------------------------- /static/assets/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/static/assets/js/custom.js -------------------------------------------------------------------------------- /static/assets/js/ext-language_tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/static/assets/js/ext-language_tools.js -------------------------------------------------------------------------------- /static/assets/js/jquery.sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/static/assets/js/jquery.sticky.js -------------------------------------------------------------------------------- /static/assets/js/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/static/assets/js/owl.carousel.min.js -------------------------------------------------------------------------------- /static/assets/js/wow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/static/assets/js/wow.min.js -------------------------------------------------------------------------------- /suite/like&2020-12-02-14-32-36-746/测试项目/debugtalk.py: -------------------------------------------------------------------------------- 1 | # debugtalk.py -------------------------------------------------------------------------------- /suite/like&2020-12-02-14-35-57-714/测试项目/debugtalk.py: -------------------------------------------------------------------------------- 1 | # debugtalk.py -------------------------------------------------------------------------------- /suite/like&2020-12-02-14-36-26-801/测试项目/debugtalk.py: -------------------------------------------------------------------------------- 1 | # debugtalk.py -------------------------------------------------------------------------------- /suite/like&2020-12-02-14-36-58-060/测试项目/debugtalk.py: -------------------------------------------------------------------------------- 1 | # debugtalk.py -------------------------------------------------------------------------------- /suite/like&2020-12-02-14-37-22-491/测试项目/debugtalk.py: -------------------------------------------------------------------------------- 1 | # debugtalk.py -------------------------------------------------------------------------------- /suite/like&2020-12-02-14-38-31-524/测试项目/debugtalk.py: -------------------------------------------------------------------------------- 1 | # debugtalk.py -------------------------------------------------------------------------------- /suite/like&2020-12-02-14-40-10-998/测试项目/debugtalk.py: -------------------------------------------------------------------------------- 1 | # debugtalk.py -------------------------------------------------------------------------------- /suite/like&2020-12-02-14-40-24-197/测试项目/debugtalk.py: -------------------------------------------------------------------------------- 1 | # debugtalk.py -------------------------------------------------------------------------------- /suite/like&2020-12-02-14-42-48-650/测试项目/debugtalk.py: -------------------------------------------------------------------------------- 1 | # debugtalk.py -------------------------------------------------------------------------------- /suite/like&2020-12-02-14-43-58-553/测试项目/debugtalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/suite/like&2020-12-02-14-43-58-553/测试项目/debugtalk.py -------------------------------------------------------------------------------- /suite/like&2020-12-02-14-44-02-543/测试项目/debugtalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/suite/like&2020-12-02-14-44-02-543/测试项目/debugtalk.py -------------------------------------------------------------------------------- /suite/like&2020-12-02-14-48-50-288/测试项目/debugtalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/suite/like&2020-12-02-14-48-50-288/测试项目/debugtalk.py -------------------------------------------------------------------------------- /suite/like&2020-12-02-15-00-49-231/测试项目/debugtalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/suite/like&2020-12-02-15-00-49-231/测试项目/debugtalk.py -------------------------------------------------------------------------------- /suite/like&2020-12-02-15-02-01-042/测试项目/debugtalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/suite/like&2020-12-02-15-02-01-042/测试项目/debugtalk.py -------------------------------------------------------------------------------- /templates/add_case.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/add_case.html -------------------------------------------------------------------------------- /templates/add_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/add_config.html -------------------------------------------------------------------------------- /templates/add_module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/add_module.html -------------------------------------------------------------------------------- /templates/add_project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/add_project.html -------------------------------------------------------------------------------- /templates/add_robot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/add_robot.html -------------------------------------------------------------------------------- /templates/add_suite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/add_suite.html -------------------------------------------------------------------------------- /templates/add_task.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/add_task.html -------------------------------------------------------------------------------- /templates/base-bak.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/base-bak.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/config_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/config_list.html -------------------------------------------------------------------------------- /templates/debugtalk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/debugtalk.html -------------------------------------------------------------------------------- /templates/debugtalk_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/debugtalk_list.html -------------------------------------------------------------------------------- /templates/echo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/echo.html -------------------------------------------------------------------------------- /templates/edit_case.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/edit_case.html -------------------------------------------------------------------------------- /templates/edit_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/edit_config.html -------------------------------------------------------------------------------- /templates/edit_robot.bak.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/edit_robot.bak.html -------------------------------------------------------------------------------- /templates/edit_robot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/edit_robot.html -------------------------------------------------------------------------------- /templates/edit_suite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/edit_suite.html -------------------------------------------------------------------------------- /templates/env_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/env_list.html -------------------------------------------------------------------------------- /templates/error_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/error_info.html -------------------------------------------------------------------------------- /templates/extent_report_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/extent_report_template.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/log.html: -------------------------------------------------------------------------------- 1 | {{ log_context }} -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/module_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/module_list.html -------------------------------------------------------------------------------- /templates/periodictask_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/periodictask_list.html -------------------------------------------------------------------------------- /templates/project_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/project_list.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/register.html -------------------------------------------------------------------------------- /templates/report_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/report_list.html -------------------------------------------------------------------------------- /templates/report_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/report_template.html -------------------------------------------------------------------------------- /templates/robot_case_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/robot_case_list.html -------------------------------------------------------------------------------- /templates/robot_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/robot_details.html -------------------------------------------------------------------------------- /templates/robot_report.html: -------------------------------------------------------------------------------- 1 | {{ reports }} -------------------------------------------------------------------------------- /templates/suite_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/suite_list.html -------------------------------------------------------------------------------- /templates/test_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/templates/test_list.html -------------------------------------------------------------------------------- /templates/view_report.html: -------------------------------------------------------------------------------- 1 | {{ reports }} -------------------------------------------------------------------------------- /uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/like7887/HttpRunnerManager3/HEAD/uwsgi.ini --------------------------------------------------------------------------------