├── .coveragerc ├── .devcontainer ├── README.md ├── claude-setup.sh ├── devcontainer.json └── setup.sh ├── .dockerignore ├── .env.example ├── .env.external.samlpe ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── check_app_pr.yml │ ├── check_web_pr.yml │ ├── deploy_docker_compose.yml │ ├── django_unittest.yml │ ├── playwright_ui_test.yml │ ├── pr-check.yml │ ├── sonarqube.yml │ ├── test.yml │ ├── upload_app_image.yml │ ├── upload_web_dist.yml │ ├── upload_web_image.yml │ └── web_deploy.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── .vscode └── launch.json ├── CLAUDE.md ├── Dockerfile ├── FasterRunner ├── __init__.py ├── auth.py ├── customer_swagger.py ├── database.py ├── log.py ├── mycelery.py ├── mycelery_dev.py ├── pagination.py ├── routers.py ├── settings │ ├── __init__.py │ ├── base.py │ ├── dev.py │ ├── docker.py │ └── pro.py ├── swagger.py ├── urls.py ├── wsgi.py └── wsgi_docker.py ├── LICENSE ├── Makefile ├── Makefile.test ├── README-TESTING.md ├── README.md ├── ci_settings.py ├── conftest.py ├── curd ├── __init__.py ├── base_curd.py └── crud_helper.py ├── db ├── init.sql └── my.cnf ├── docker-compose-build-db-mq.yml ├── docker-compose-build-web.yml ├── docker-compose-for-fastup.yml ├── docker-compose-without-db-mq.yml ├── docker-compose.yml ├── fastrunner ├── __init__.py ├── admin.py ├── apps.py ├── dto │ ├── __init__.py │ └── tree_dto.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20200509_1122.py │ ├── 0003_casestep_source_api_id.py │ ├── 0004_auto_20200814_1605.py │ ├── 0005_auto_20200814_1728.py │ ├── 0006_api_case_id.py │ ├── 0007_auto_20200822_1119.py │ ├── 0008_auto_20200822_1139.py │ ├── 0009_auto_20200822_1206.py │ ├── 0010_remove_case_apis.py │ ├── 0011_auto_20201012_2355.py │ ├── 0012_auto_20201013_1029.py │ ├── 0013_visit_ip.py │ ├── 0014_auto_20201013_1505.py │ ├── 0015_auto_20201017_1623.py │ ├── 0016_auto_20201017_1624.py │ ├── 0017_visit_project.py │ ├── 0018_auto_20210410_1950.py │ ├── 0019_auto_20210411_2040.py │ ├── 0020_auto_20210525_1844.py │ ├── 0021_auto_20210525_2113.py │ ├── 0022_auto_20210525_2145.py │ ├── 0023_auto_20210910_1155.py │ ├── 0024_project_is_deleted.py │ └── __init__.py ├── models.py ├── serializers.py ├── services │ ├── __init__.py │ └── tree_service_impl.py ├── tasks.py ├── templatetags │ ├── __init__.py │ └── custom_tags.py ├── test.py ├── tests │ ├── __init__.py │ └── test_tree_service_impl.py ├── urls.py ├── utils │ ├── __init__.py │ ├── convert2boomer.py │ ├── convert2hrp.py │ ├── day.py │ ├── decorator.py │ ├── ding_message.py │ ├── email_helper.py │ ├── host.py │ ├── lark_message.py │ ├── loader.py │ ├── middleware.py │ ├── parser.py │ ├── prepare.py │ ├── relation.py │ ├── response.py │ ├── runner.py │ ├── task.py │ ├── test_tree.py │ └── tree.py └── views │ ├── __init__.py │ ├── api.py │ ├── ci.py │ ├── config.py │ ├── project.py │ ├── report.py │ ├── run.py │ ├── schedule.py │ ├── suite.py │ ├── timer_task.py │ └── yapi.py ├── fastuser ├── __init__.py ├── admin.py ├── apps.py ├── common │ ├── __init__.py │ ├── response.py │ └── token.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20200428_0124.py │ ├── 0002_auto_20200509_1122.py │ ├── 0003_merge_20200813_1655.py │ ├── 0004_auto_20200814_1605.py │ ├── 0005_auto_20200914_2222.py │ ├── 0006_myuser_show_hosts.py │ ├── 0007_alter_myuser_first_name.py │ └── __init__.py ├── models.py ├── serializers.py ├── urls.py └── views.py ├── httprunner ├── __about__.py ├── __init__.py ├── api.py ├── builtin │ ├── __init__.py │ ├── common_util.py │ ├── comparators.py │ ├── faker_helper.py │ ├── login_helper.py │ ├── rand_helper.py │ ├── request_helper.py │ └── time_helper.py ├── cli.py ├── client.py ├── compat.py ├── context.py ├── exceptions.py ├── loader.py ├── locustfile.py ├── locusts.py ├── logger.py ├── parser.py ├── report.py ├── response.py ├── runner.py ├── templates │ ├── locustfile.py │ ├── locustfile_template │ └── report_template.html ├── utils.py └── validator.py ├── manage.py ├── mock ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_mockapi_options_alter_mockapi_project.py │ ├── 0003_mockapi_api_desc_mockapi_api_id_mockapi_api_name_and_more.py │ ├── 0004_remove_mockapi_followers_mockapi_enabled_and_more.py │ ├── 0005_mockapilog_request_id_alter_mockapi_api_id_and_more.py │ ├── 0006_mockapi_request_body_mockapi_version_and_more.py │ ├── 0007_mockapiresponsehandler.py │ ├── 0008_mockapiresponsehandler_description_and_more.py │ └── __init__.py ├── models.py ├── serializers.py ├── tasks.py ├── tests.py └── views.py ├── nginx-remote ├── Dockerfile └── nginx.conf ├── nginx.conf ├── nginx ├── Dockerfile └── nginx.conf ├── poetry.lock ├── pyproject.toml ├── pytest-ci.ini ├── pytest-temp.ini ├── pytest.ini ├── requirements.txt ├── sql └── .gitkeep ├── start-dev.sh ├── start.bat ├── start.sh ├── static └── extent.js ├── static_root └── .gitkeep ├── system ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── serializers │ ├── __init__.py │ └── log_record_serializer.py ├── tasks.py ├── tests.py └── views.py ├── tempWorkDir └── .gitkeep ├── templates └── report_template.html ├── test_settings.py ├── tests ├── test_additional_coverage.py ├── test_api_views.py ├── test_basic_imports.py ├── test_constants.py ├── test_core_features.py ├── test_fastrunner_test_module.py ├── test_fastuser_mock_system.py ├── test_integration.py ├── test_login_views.py ├── test_mockapi_serializers.py ├── test_models.py ├── test_serializers_models.py ├── test_simple_coverage.py ├── test_utils.py ├── test_utils_coverage.py ├── test_views_coverage.py └── test_views_integration.py ├── uwsgi.ini ├── uwsgi_docker.ini └── web ├── .babelrc ├── .dockerignore ├── .editorconfig ├── .gitignore ├── .postcssrc.js ├── Dockerfile ├── Dockerfile-build ├── LICENSE ├── README.md ├── build ├── build.js ├── check-versions.js ├── utils.js ├── vue-loader.conf.js ├── webpack.base.conf.js ├── webpack.dev.conf.js └── webpack.prod.conf.js ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── index.html ├── nginx.conf ├── nginx_localhost.conf ├── package-lock.json ├── package.json ├── src ├── App.vue ├── assets │ ├── images │ │ ├── bottom-left.webp │ │ └── bottom-right.webp │ └── styles │ │ ├── home.css │ │ ├── icon-font │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ └── iconfont.woff │ │ ├── iconfont.css │ │ ├── reports.css │ │ ├── swagger.css │ │ └── tree.css ├── main.js ├── mixins │ ├── apiListMixin.js │ ├── configMixin.js │ └── treeMixin.js ├── pages │ ├── auth │ │ ├── Login.vue │ │ └── Register.vue │ ├── common │ │ └── layout │ │ │ └── CommonLayout.vue │ ├── config │ │ ├── RecordConfig.vue │ │ └── components │ │ │ ├── ConfigBody.vue │ │ │ └── ConfigList.vue │ ├── fastrunner │ │ ├── api │ │ │ ├── RecordApi.vue │ │ │ └── components │ │ │ │ ├── ApiBody.vue │ │ │ │ └── ApiList.vue │ │ ├── case │ │ │ ├── AutoTest.vue │ │ │ └── components │ │ │ │ ├── EditTest.vue │ │ │ │ ├── TestBody.vue │ │ │ │ └── TestList.vue │ │ └── config │ │ │ ├── RecordConfig.vue │ │ │ └── components │ │ │ ├── ConfigBody.vue │ │ │ └── ConfigList.vue │ ├── home │ │ ├── Home.vue │ │ └── components │ │ │ ├── Header.vue │ │ │ ├── Side.vue │ │ │ └── SidebarItem.vue │ ├── httprunner │ │ ├── DebugTalk.vue │ │ └── components │ │ │ ├── CodeEditor.vue │ │ │ ├── Extract.vue │ │ │ ├── Headers.vue │ │ │ ├── Hooks.vue │ │ │ ├── Parameters.vue │ │ │ ├── Request.vue │ │ │ ├── RunCodeResult.vue │ │ │ ├── Validate.vue │ │ │ └── Variables.vue │ ├── mock_server │ │ ├── mock_api │ │ │ ├── CustomAceEditor.vue │ │ │ └── index.vue │ │ ├── mock_log │ │ │ └── index.vue │ │ └── mock_project │ │ │ └── index.vue │ ├── project │ │ ├── DataBase.vue │ │ ├── ProjectDashBoard.vue │ │ ├── ProjectDetail.vue │ │ └── ProjectList.vue │ ├── reports │ │ ├── DebugReport.vue │ │ └── ReportList.vue │ ├── task │ │ ├── AddTasks.vue │ │ └── Tasks.vue │ └── variables │ │ ├── GlobalEnv.vue │ │ └── HostAddress.vue ├── restful │ └── api.js ├── router │ └── index.js ├── store │ ├── index.js │ ├── mutations.js │ └── state.js ├── util │ ├── bus.js │ └── format.js └── validator.js ├── static ├── .gitkeep └── favicon.ico └── yarn.lock /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.coveragerc -------------------------------------------------------------------------------- /.devcontainer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.devcontainer/README.md -------------------------------------------------------------------------------- /.devcontainer/claude-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.devcontainer/claude-setup.sh -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.devcontainer/setup.sh -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.env.example -------------------------------------------------------------------------------- /.env.external.samlpe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.env.external.samlpe -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/check_app_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.github/workflows/check_app_pr.yml -------------------------------------------------------------------------------- /.github/workflows/check_web_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.github/workflows/check_web_pr.yml -------------------------------------------------------------------------------- /.github/workflows/deploy_docker_compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.github/workflows/deploy_docker_compose.yml -------------------------------------------------------------------------------- /.github/workflows/django_unittest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.github/workflows/django_unittest.yml -------------------------------------------------------------------------------- /.github/workflows/playwright_ui_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.github/workflows/playwright_ui_test.yml -------------------------------------------------------------------------------- /.github/workflows/pr-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.github/workflows/pr-check.yml -------------------------------------------------------------------------------- /.github/workflows/sonarqube.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.github/workflows/sonarqube.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/upload_app_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.github/workflows/upload_app_image.yml -------------------------------------------------------------------------------- /.github/workflows/upload_web_dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.github/workflows/upload_web_dist.yml -------------------------------------------------------------------------------- /.github/workflows/upload_web_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.github/workflows/upload_web_image.yml -------------------------------------------------------------------------------- /.github/workflows/web_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.github/workflows/web_deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/Dockerfile -------------------------------------------------------------------------------- /FasterRunner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/FasterRunner/__init__.py -------------------------------------------------------------------------------- /FasterRunner/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/FasterRunner/auth.py -------------------------------------------------------------------------------- /FasterRunner/customer_swagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/FasterRunner/customer_swagger.py -------------------------------------------------------------------------------- /FasterRunner/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/FasterRunner/database.py -------------------------------------------------------------------------------- /FasterRunner/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/FasterRunner/log.py -------------------------------------------------------------------------------- /FasterRunner/mycelery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/FasterRunner/mycelery.py -------------------------------------------------------------------------------- /FasterRunner/mycelery_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/FasterRunner/mycelery_dev.py -------------------------------------------------------------------------------- /FasterRunner/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/FasterRunner/pagination.py -------------------------------------------------------------------------------- /FasterRunner/routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/FasterRunner/routers.py -------------------------------------------------------------------------------- /FasterRunner/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/FasterRunner/settings/__init__.py -------------------------------------------------------------------------------- /FasterRunner/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/FasterRunner/settings/base.py -------------------------------------------------------------------------------- /FasterRunner/settings/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/FasterRunner/settings/dev.py -------------------------------------------------------------------------------- /FasterRunner/settings/docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/FasterRunner/settings/docker.py -------------------------------------------------------------------------------- /FasterRunner/settings/pro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/FasterRunner/settings/pro.py -------------------------------------------------------------------------------- /FasterRunner/swagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/FasterRunner/swagger.py -------------------------------------------------------------------------------- /FasterRunner/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/FasterRunner/urls.py -------------------------------------------------------------------------------- /FasterRunner/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/FasterRunner/wsgi.py -------------------------------------------------------------------------------- /FasterRunner/wsgi_docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/FasterRunner/wsgi_docker.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/Makefile.test -------------------------------------------------------------------------------- /README-TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/README-TESTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/README.md -------------------------------------------------------------------------------- /ci_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/ci_settings.py -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/conftest.py -------------------------------------------------------------------------------- /curd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/curd/__init__.py -------------------------------------------------------------------------------- /curd/base_curd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/curd/base_curd.py -------------------------------------------------------------------------------- /curd/crud_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/curd/crud_helper.py -------------------------------------------------------------------------------- /db/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/db/init.sql -------------------------------------------------------------------------------- /db/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/db/my.cnf -------------------------------------------------------------------------------- /docker-compose-build-db-mq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/docker-compose-build-db-mq.yml -------------------------------------------------------------------------------- /docker-compose-build-web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/docker-compose-build-web.yml -------------------------------------------------------------------------------- /docker-compose-for-fastup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/docker-compose-for-fastup.yml -------------------------------------------------------------------------------- /docker-compose-without-db-mq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/docker-compose-without-db-mq.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /fastrunner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastrunner/admin.py: -------------------------------------------------------------------------------- 1 | # Register your models here. 2 | -------------------------------------------------------------------------------- /fastrunner/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/apps.py -------------------------------------------------------------------------------- /fastrunner/dto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/dto/__init__.py -------------------------------------------------------------------------------- /fastrunner/dto/tree_dto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/dto/tree_dto.py -------------------------------------------------------------------------------- /fastrunner/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0001_initial.py -------------------------------------------------------------------------------- /fastrunner/migrations/0002_auto_20200509_1122.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0002_auto_20200509_1122.py -------------------------------------------------------------------------------- /fastrunner/migrations/0003_casestep_source_api_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0003_casestep_source_api_id.py -------------------------------------------------------------------------------- /fastrunner/migrations/0004_auto_20200814_1605.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0004_auto_20200814_1605.py -------------------------------------------------------------------------------- /fastrunner/migrations/0005_auto_20200814_1728.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0005_auto_20200814_1728.py -------------------------------------------------------------------------------- /fastrunner/migrations/0006_api_case_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0006_api_case_id.py -------------------------------------------------------------------------------- /fastrunner/migrations/0007_auto_20200822_1119.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0007_auto_20200822_1119.py -------------------------------------------------------------------------------- /fastrunner/migrations/0008_auto_20200822_1139.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0008_auto_20200822_1139.py -------------------------------------------------------------------------------- /fastrunner/migrations/0009_auto_20200822_1206.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0009_auto_20200822_1206.py -------------------------------------------------------------------------------- /fastrunner/migrations/0010_remove_case_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0010_remove_case_apis.py -------------------------------------------------------------------------------- /fastrunner/migrations/0011_auto_20201012_2355.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0011_auto_20201012_2355.py -------------------------------------------------------------------------------- /fastrunner/migrations/0012_auto_20201013_1029.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0012_auto_20201013_1029.py -------------------------------------------------------------------------------- /fastrunner/migrations/0013_visit_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0013_visit_ip.py -------------------------------------------------------------------------------- /fastrunner/migrations/0014_auto_20201013_1505.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0014_auto_20201013_1505.py -------------------------------------------------------------------------------- /fastrunner/migrations/0015_auto_20201017_1623.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0015_auto_20201017_1623.py -------------------------------------------------------------------------------- /fastrunner/migrations/0016_auto_20201017_1624.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0016_auto_20201017_1624.py -------------------------------------------------------------------------------- /fastrunner/migrations/0017_visit_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0017_visit_project.py -------------------------------------------------------------------------------- /fastrunner/migrations/0018_auto_20210410_1950.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0018_auto_20210410_1950.py -------------------------------------------------------------------------------- /fastrunner/migrations/0019_auto_20210411_2040.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0019_auto_20210411_2040.py -------------------------------------------------------------------------------- /fastrunner/migrations/0020_auto_20210525_1844.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0020_auto_20210525_1844.py -------------------------------------------------------------------------------- /fastrunner/migrations/0021_auto_20210525_2113.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0021_auto_20210525_2113.py -------------------------------------------------------------------------------- /fastrunner/migrations/0022_auto_20210525_2145.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0022_auto_20210525_2145.py -------------------------------------------------------------------------------- /fastrunner/migrations/0023_auto_20210910_1155.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0023_auto_20210910_1155.py -------------------------------------------------------------------------------- /fastrunner/migrations/0024_project_is_deleted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/migrations/0024_project_is_deleted.py -------------------------------------------------------------------------------- /fastrunner/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastrunner/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/models.py -------------------------------------------------------------------------------- /fastrunner/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/serializers.py -------------------------------------------------------------------------------- /fastrunner/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/services/__init__.py -------------------------------------------------------------------------------- /fastrunner/services/tree_service_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/services/tree_service_impl.py -------------------------------------------------------------------------------- /fastrunner/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/tasks.py -------------------------------------------------------------------------------- /fastrunner/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastrunner/templatetags/custom_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/templatetags/custom_tags.py -------------------------------------------------------------------------------- /fastrunner/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/test.py -------------------------------------------------------------------------------- /fastrunner/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/tests/__init__.py -------------------------------------------------------------------------------- /fastrunner/tests/test_tree_service_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/tests/test_tree_service_impl.py -------------------------------------------------------------------------------- /fastrunner/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/urls.py -------------------------------------------------------------------------------- /fastrunner/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastrunner/utils/convert2boomer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/utils/convert2boomer.py -------------------------------------------------------------------------------- /fastrunner/utils/convert2hrp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/utils/convert2hrp.py -------------------------------------------------------------------------------- /fastrunner/utils/day.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/utils/day.py -------------------------------------------------------------------------------- /fastrunner/utils/decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/utils/decorator.py -------------------------------------------------------------------------------- /fastrunner/utils/ding_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/utils/ding_message.py -------------------------------------------------------------------------------- /fastrunner/utils/email_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/utils/email_helper.py -------------------------------------------------------------------------------- /fastrunner/utils/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/utils/host.py -------------------------------------------------------------------------------- /fastrunner/utils/lark_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/utils/lark_message.py -------------------------------------------------------------------------------- /fastrunner/utils/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/utils/loader.py -------------------------------------------------------------------------------- /fastrunner/utils/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/utils/middleware.py -------------------------------------------------------------------------------- /fastrunner/utils/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/utils/parser.py -------------------------------------------------------------------------------- /fastrunner/utils/prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/utils/prepare.py -------------------------------------------------------------------------------- /fastrunner/utils/relation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/utils/relation.py -------------------------------------------------------------------------------- /fastrunner/utils/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/utils/response.py -------------------------------------------------------------------------------- /fastrunner/utils/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/utils/runner.py -------------------------------------------------------------------------------- /fastrunner/utils/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/utils/task.py -------------------------------------------------------------------------------- /fastrunner/utils/test_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/utils/test_tree.py -------------------------------------------------------------------------------- /fastrunner/utils/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/utils/tree.py -------------------------------------------------------------------------------- /fastrunner/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastrunner/views/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/views/api.py -------------------------------------------------------------------------------- /fastrunner/views/ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/views/ci.py -------------------------------------------------------------------------------- /fastrunner/views/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/views/config.py -------------------------------------------------------------------------------- /fastrunner/views/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/views/project.py -------------------------------------------------------------------------------- /fastrunner/views/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/views/report.py -------------------------------------------------------------------------------- /fastrunner/views/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/views/run.py -------------------------------------------------------------------------------- /fastrunner/views/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/views/schedule.py -------------------------------------------------------------------------------- /fastrunner/views/suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/views/suite.py -------------------------------------------------------------------------------- /fastrunner/views/timer_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/views/timer_task.py -------------------------------------------------------------------------------- /fastrunner/views/yapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastrunner/views/yapi.py -------------------------------------------------------------------------------- /fastuser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastuser/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastuser/admin.py -------------------------------------------------------------------------------- /fastuser/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastuser/apps.py -------------------------------------------------------------------------------- /fastuser/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastuser/common/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastuser/common/response.py -------------------------------------------------------------------------------- /fastuser/common/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastuser/common/token.py -------------------------------------------------------------------------------- /fastuser/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastuser/migrations/0001_initial.py -------------------------------------------------------------------------------- /fastuser/migrations/0002_auto_20200428_0124.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastuser/migrations/0002_auto_20200428_0124.py -------------------------------------------------------------------------------- /fastuser/migrations/0002_auto_20200509_1122.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastuser/migrations/0002_auto_20200509_1122.py -------------------------------------------------------------------------------- /fastuser/migrations/0003_merge_20200813_1655.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastuser/migrations/0003_merge_20200813_1655.py -------------------------------------------------------------------------------- /fastuser/migrations/0004_auto_20200814_1605.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastuser/migrations/0004_auto_20200814_1605.py -------------------------------------------------------------------------------- /fastuser/migrations/0005_auto_20200914_2222.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastuser/migrations/0005_auto_20200914_2222.py -------------------------------------------------------------------------------- /fastuser/migrations/0006_myuser_show_hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastuser/migrations/0006_myuser_show_hosts.py -------------------------------------------------------------------------------- /fastuser/migrations/0007_alter_myuser_first_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastuser/migrations/0007_alter_myuser_first_name.py -------------------------------------------------------------------------------- /fastuser/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastuser/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastuser/models.py -------------------------------------------------------------------------------- /fastuser/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastuser/serializers.py -------------------------------------------------------------------------------- /fastuser/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastuser/urls.py -------------------------------------------------------------------------------- /fastuser/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/fastuser/views.py -------------------------------------------------------------------------------- /httprunner/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/__about__.py -------------------------------------------------------------------------------- /httprunner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/__init__.py -------------------------------------------------------------------------------- /httprunner/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/api.py -------------------------------------------------------------------------------- /httprunner/builtin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/builtin/__init__.py -------------------------------------------------------------------------------- /httprunner/builtin/common_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/builtin/common_util.py -------------------------------------------------------------------------------- /httprunner/builtin/comparators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/builtin/comparators.py -------------------------------------------------------------------------------- /httprunner/builtin/faker_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/builtin/faker_helper.py -------------------------------------------------------------------------------- /httprunner/builtin/login_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/builtin/login_helper.py -------------------------------------------------------------------------------- /httprunner/builtin/rand_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/builtin/rand_helper.py -------------------------------------------------------------------------------- /httprunner/builtin/request_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/builtin/request_helper.py -------------------------------------------------------------------------------- /httprunner/builtin/time_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/builtin/time_helper.py -------------------------------------------------------------------------------- /httprunner/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/cli.py -------------------------------------------------------------------------------- /httprunner/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/client.py -------------------------------------------------------------------------------- /httprunner/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/compat.py -------------------------------------------------------------------------------- /httprunner/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/context.py -------------------------------------------------------------------------------- /httprunner/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/exceptions.py -------------------------------------------------------------------------------- /httprunner/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/loader.py -------------------------------------------------------------------------------- /httprunner/locustfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/locustfile.py -------------------------------------------------------------------------------- /httprunner/locusts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/locusts.py -------------------------------------------------------------------------------- /httprunner/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/logger.py -------------------------------------------------------------------------------- /httprunner/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/parser.py -------------------------------------------------------------------------------- /httprunner/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/report.py -------------------------------------------------------------------------------- /httprunner/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/response.py -------------------------------------------------------------------------------- /httprunner/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/runner.py -------------------------------------------------------------------------------- /httprunner/templates/locustfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/templates/locustfile.py -------------------------------------------------------------------------------- /httprunner/templates/locustfile_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/templates/locustfile_template -------------------------------------------------------------------------------- /httprunner/templates/report_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/templates/report_template.html -------------------------------------------------------------------------------- /httprunner/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/utils.py -------------------------------------------------------------------------------- /httprunner/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/httprunner/validator.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/manage.py -------------------------------------------------------------------------------- /mock/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mock/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/mock/admin.py -------------------------------------------------------------------------------- /mock/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/mock/apps.py -------------------------------------------------------------------------------- /mock/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/mock/migrations/0001_initial.py -------------------------------------------------------------------------------- /mock/migrations/0002_alter_mockapi_options_alter_mockapi_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/mock/migrations/0002_alter_mockapi_options_alter_mockapi_project.py -------------------------------------------------------------------------------- /mock/migrations/0003_mockapi_api_desc_mockapi_api_id_mockapi_api_name_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/mock/migrations/0003_mockapi_api_desc_mockapi_api_id_mockapi_api_name_and_more.py -------------------------------------------------------------------------------- /mock/migrations/0004_remove_mockapi_followers_mockapi_enabled_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/mock/migrations/0004_remove_mockapi_followers_mockapi_enabled_and_more.py -------------------------------------------------------------------------------- /mock/migrations/0005_mockapilog_request_id_alter_mockapi_api_id_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/mock/migrations/0005_mockapilog_request_id_alter_mockapi_api_id_and_more.py -------------------------------------------------------------------------------- /mock/migrations/0006_mockapi_request_body_mockapi_version_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/mock/migrations/0006_mockapi_request_body_mockapi_version_and_more.py -------------------------------------------------------------------------------- /mock/migrations/0007_mockapiresponsehandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/mock/migrations/0007_mockapiresponsehandler.py -------------------------------------------------------------------------------- /mock/migrations/0008_mockapiresponsehandler_description_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/mock/migrations/0008_mockapiresponsehandler_description_and_more.py -------------------------------------------------------------------------------- /mock/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mock/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/mock/models.py -------------------------------------------------------------------------------- /mock/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/mock/serializers.py -------------------------------------------------------------------------------- /mock/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/mock/tasks.py -------------------------------------------------------------------------------- /mock/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/mock/tests.py -------------------------------------------------------------------------------- /mock/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/mock/views.py -------------------------------------------------------------------------------- /nginx-remote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/nginx-remote/Dockerfile -------------------------------------------------------------------------------- /nginx-remote/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/nginx-remote/nginx.conf -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/nginx.conf -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest-ci.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/pytest-ci.ini -------------------------------------------------------------------------------- /pytest-temp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/pytest-temp.ini -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/requirements.txt -------------------------------------------------------------------------------- /sql/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /start-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/start-dev.sh -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/start.bat -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/start.sh -------------------------------------------------------------------------------- /static/extent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/static/extent.js -------------------------------------------------------------------------------- /static_root/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/admin.py: -------------------------------------------------------------------------------- 1 | # Register your models here. 2 | -------------------------------------------------------------------------------- /system/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/system/apps.py -------------------------------------------------------------------------------- /system/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/system/migrations/0001_initial.py -------------------------------------------------------------------------------- /system/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /system/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/system/models.py -------------------------------------------------------------------------------- /system/serializers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/system/serializers/__init__.py -------------------------------------------------------------------------------- /system/serializers/log_record_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/system/serializers/log_record_serializer.py -------------------------------------------------------------------------------- /system/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/system/tasks.py -------------------------------------------------------------------------------- /system/tests.py: -------------------------------------------------------------------------------- 1 | # Create your tests here. 2 | -------------------------------------------------------------------------------- /system/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/system/views.py -------------------------------------------------------------------------------- /tempWorkDir/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/report_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/templates/report_template.html -------------------------------------------------------------------------------- /test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/test_settings.py -------------------------------------------------------------------------------- /tests/test_additional_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/tests/test_additional_coverage.py -------------------------------------------------------------------------------- /tests/test_api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/tests/test_api_views.py -------------------------------------------------------------------------------- /tests/test_basic_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/tests/test_basic_imports.py -------------------------------------------------------------------------------- /tests/test_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/tests/test_constants.py -------------------------------------------------------------------------------- /tests/test_core_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/tests/test_core_features.py -------------------------------------------------------------------------------- /tests/test_fastrunner_test_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/tests/test_fastrunner_test_module.py -------------------------------------------------------------------------------- /tests/test_fastuser_mock_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/tests/test_fastuser_mock_system.py -------------------------------------------------------------------------------- /tests/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/tests/test_integration.py -------------------------------------------------------------------------------- /tests/test_login_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/tests/test_login_views.py -------------------------------------------------------------------------------- /tests/test_mockapi_serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/tests/test_mockapi_serializers.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_serializers_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/tests/test_serializers_models.py -------------------------------------------------------------------------------- /tests/test_simple_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/tests/test_simple_coverage.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_utils_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/tests/test_utils_coverage.py -------------------------------------------------------------------------------- /tests/test_views_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/tests/test_views_coverage.py -------------------------------------------------------------------------------- /tests/test_views_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/tests/test_views_integration.py -------------------------------------------------------------------------------- /uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/uwsgi.ini -------------------------------------------------------------------------------- /uwsgi_docker.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/uwsgi_docker.ini -------------------------------------------------------------------------------- /web/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/.babelrc -------------------------------------------------------------------------------- /web/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/.dockerignore -------------------------------------------------------------------------------- /web/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/.editorconfig -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/.postcssrc.js -------------------------------------------------------------------------------- /web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/Dockerfile -------------------------------------------------------------------------------- /web/Dockerfile-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/Dockerfile-build -------------------------------------------------------------------------------- /web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/LICENSE -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/README.md -------------------------------------------------------------------------------- /web/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/build/build.js -------------------------------------------------------------------------------- /web/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/build/check-versions.js -------------------------------------------------------------------------------- /web/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/build/utils.js -------------------------------------------------------------------------------- /web/build/vue-loader.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/build/vue-loader.conf.js -------------------------------------------------------------------------------- /web/build/webpack.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/build/webpack.base.conf.js -------------------------------------------------------------------------------- /web/build/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/build/webpack.dev.conf.js -------------------------------------------------------------------------------- /web/build/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/build/webpack.prod.conf.js -------------------------------------------------------------------------------- /web/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/config/dev.env.js -------------------------------------------------------------------------------- /web/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/config/index.js -------------------------------------------------------------------------------- /web/config/prod.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/config/prod.env.js -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/index.html -------------------------------------------------------------------------------- /web/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/nginx.conf -------------------------------------------------------------------------------- /web/nginx_localhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/nginx_localhost.conf -------------------------------------------------------------------------------- /web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/package-lock.json -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/package.json -------------------------------------------------------------------------------- /web/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/App.vue -------------------------------------------------------------------------------- /web/src/assets/images/bottom-left.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/assets/images/bottom-left.webp -------------------------------------------------------------------------------- /web/src/assets/images/bottom-right.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/assets/images/bottom-right.webp -------------------------------------------------------------------------------- /web/src/assets/styles/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/assets/styles/home.css -------------------------------------------------------------------------------- /web/src/assets/styles/icon-font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/assets/styles/icon-font/iconfont.eot -------------------------------------------------------------------------------- /web/src/assets/styles/icon-font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/assets/styles/icon-font/iconfont.svg -------------------------------------------------------------------------------- /web/src/assets/styles/icon-font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/assets/styles/icon-font/iconfont.ttf -------------------------------------------------------------------------------- /web/src/assets/styles/icon-font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/assets/styles/icon-font/iconfont.woff -------------------------------------------------------------------------------- /web/src/assets/styles/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/assets/styles/iconfont.css -------------------------------------------------------------------------------- /web/src/assets/styles/reports.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/assets/styles/reports.css -------------------------------------------------------------------------------- /web/src/assets/styles/swagger.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/assets/styles/swagger.css -------------------------------------------------------------------------------- /web/src/assets/styles/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/assets/styles/tree.css -------------------------------------------------------------------------------- /web/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/main.js -------------------------------------------------------------------------------- /web/src/mixins/apiListMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/mixins/apiListMixin.js -------------------------------------------------------------------------------- /web/src/mixins/configMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/mixins/configMixin.js -------------------------------------------------------------------------------- /web/src/mixins/treeMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/mixins/treeMixin.js -------------------------------------------------------------------------------- /web/src/pages/auth/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/auth/Login.vue -------------------------------------------------------------------------------- /web/src/pages/auth/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/auth/Register.vue -------------------------------------------------------------------------------- /web/src/pages/common/layout/CommonLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/common/layout/CommonLayout.vue -------------------------------------------------------------------------------- /web/src/pages/config/RecordConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/config/RecordConfig.vue -------------------------------------------------------------------------------- /web/src/pages/config/components/ConfigBody.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/config/components/ConfigBody.vue -------------------------------------------------------------------------------- /web/src/pages/config/components/ConfigList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/config/components/ConfigList.vue -------------------------------------------------------------------------------- /web/src/pages/fastrunner/api/RecordApi.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/fastrunner/api/RecordApi.vue -------------------------------------------------------------------------------- /web/src/pages/fastrunner/api/components/ApiBody.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/fastrunner/api/components/ApiBody.vue -------------------------------------------------------------------------------- /web/src/pages/fastrunner/api/components/ApiList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/fastrunner/api/components/ApiList.vue -------------------------------------------------------------------------------- /web/src/pages/fastrunner/case/AutoTest.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/fastrunner/case/AutoTest.vue -------------------------------------------------------------------------------- /web/src/pages/fastrunner/case/components/EditTest.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/fastrunner/case/components/EditTest.vue -------------------------------------------------------------------------------- /web/src/pages/fastrunner/case/components/TestBody.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/fastrunner/case/components/TestBody.vue -------------------------------------------------------------------------------- /web/src/pages/fastrunner/case/components/TestList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/fastrunner/case/components/TestList.vue -------------------------------------------------------------------------------- /web/src/pages/fastrunner/config/RecordConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/fastrunner/config/RecordConfig.vue -------------------------------------------------------------------------------- /web/src/pages/fastrunner/config/components/ConfigBody.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/fastrunner/config/components/ConfigBody.vue -------------------------------------------------------------------------------- /web/src/pages/fastrunner/config/components/ConfigList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/fastrunner/config/components/ConfigList.vue -------------------------------------------------------------------------------- /web/src/pages/home/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/home/Home.vue -------------------------------------------------------------------------------- /web/src/pages/home/components/Header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/home/components/Header.vue -------------------------------------------------------------------------------- /web/src/pages/home/components/Side.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/home/components/Side.vue -------------------------------------------------------------------------------- /web/src/pages/home/components/SidebarItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/home/components/SidebarItem.vue -------------------------------------------------------------------------------- /web/src/pages/httprunner/DebugTalk.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/httprunner/DebugTalk.vue -------------------------------------------------------------------------------- /web/src/pages/httprunner/components/CodeEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/httprunner/components/CodeEditor.vue -------------------------------------------------------------------------------- /web/src/pages/httprunner/components/Extract.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/httprunner/components/Extract.vue -------------------------------------------------------------------------------- /web/src/pages/httprunner/components/Headers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/httprunner/components/Headers.vue -------------------------------------------------------------------------------- /web/src/pages/httprunner/components/Hooks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/httprunner/components/Hooks.vue -------------------------------------------------------------------------------- /web/src/pages/httprunner/components/Parameters.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/httprunner/components/Parameters.vue -------------------------------------------------------------------------------- /web/src/pages/httprunner/components/Request.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/httprunner/components/Request.vue -------------------------------------------------------------------------------- /web/src/pages/httprunner/components/RunCodeResult.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/httprunner/components/RunCodeResult.vue -------------------------------------------------------------------------------- /web/src/pages/httprunner/components/Validate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/httprunner/components/Validate.vue -------------------------------------------------------------------------------- /web/src/pages/httprunner/components/Variables.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/httprunner/components/Variables.vue -------------------------------------------------------------------------------- /web/src/pages/mock_server/mock_api/CustomAceEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/mock_server/mock_api/CustomAceEditor.vue -------------------------------------------------------------------------------- /web/src/pages/mock_server/mock_api/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/mock_server/mock_api/index.vue -------------------------------------------------------------------------------- /web/src/pages/mock_server/mock_log/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/mock_server/mock_log/index.vue -------------------------------------------------------------------------------- /web/src/pages/mock_server/mock_project/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/mock_server/mock_project/index.vue -------------------------------------------------------------------------------- /web/src/pages/project/DataBase.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/project/DataBase.vue -------------------------------------------------------------------------------- /web/src/pages/project/ProjectDashBoard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/project/ProjectDashBoard.vue -------------------------------------------------------------------------------- /web/src/pages/project/ProjectDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/project/ProjectDetail.vue -------------------------------------------------------------------------------- /web/src/pages/project/ProjectList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/project/ProjectList.vue -------------------------------------------------------------------------------- /web/src/pages/reports/DebugReport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/reports/DebugReport.vue -------------------------------------------------------------------------------- /web/src/pages/reports/ReportList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/reports/ReportList.vue -------------------------------------------------------------------------------- /web/src/pages/task/AddTasks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/task/AddTasks.vue -------------------------------------------------------------------------------- /web/src/pages/task/Tasks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/task/Tasks.vue -------------------------------------------------------------------------------- /web/src/pages/variables/GlobalEnv.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/variables/GlobalEnv.vue -------------------------------------------------------------------------------- /web/src/pages/variables/HostAddress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/pages/variables/HostAddress.vue -------------------------------------------------------------------------------- /web/src/restful/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/restful/api.js -------------------------------------------------------------------------------- /web/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/router/index.js -------------------------------------------------------------------------------- /web/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/store/index.js -------------------------------------------------------------------------------- /web/src/store/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/store/mutations.js -------------------------------------------------------------------------------- /web/src/store/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/store/state.js -------------------------------------------------------------------------------- /web/src/util/bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/util/bus.js -------------------------------------------------------------------------------- /web/src/util/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/util/format.js -------------------------------------------------------------------------------- /web/src/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/src/validator.js -------------------------------------------------------------------------------- /web/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/static/favicon.ico -------------------------------------------------------------------------------- /web/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihuacai168/AnotherFasterRunner/HEAD/web/yarn.lock --------------------------------------------------------------------------------