mirror of
https://github.com/httprunner/httprunner.git
synced 2026-07-09 22:44:05 +08:00
feat: init mkdocs
This commit is contained in:
3
docs/CHANGELOG.md
Normal file
3
docs/CHANGELOG.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Release History
|
||||||
|
|
||||||
|
## 0.1.0 (2021-09-01)
|
||||||
@@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
## Key Features
|
## Key Features
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
- [x] Full support for HTTP(S) requests, more protocols are also in the plan.
|
- [x] Full support for HTTP(S) requests, more protocols are also in the plan.
|
||||||
- [x] Testcases can be described in multiple formats, `YAML`/`JSON`/`Golang`, and they are interchangeable.
|
- [x] Testcases can be described in multiple formats, `YAML`/`JSON`/`Golang`, and they are interchangeable.
|
||||||
@@ -57,7 +57,7 @@ Flags:
|
|||||||
Use "hrp [command] --help" for more information about a command.
|
Use "hrp [command] --help" for more information about a command.
|
||||||
```
|
```
|
||||||
|
|
||||||
You can use `hrp run` command to run HttpRunner JSON/YAML testcases. The following is an example running [examples/demo.json](examples/demo.json)
|
You can use `hrp run` command to run HttpRunner JSON/YAML testcases. The following is an example running [examples/demo.json][demo.json]
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary>$ hrp run examples/demo.json</summary>
|
<summary>$ hrp run examples/demo.json</summary>
|
||||||
@@ -236,7 +236,7 @@ func TestCaseDemo(t *testing.T) {
|
|||||||
|
|
||||||
## Sponsors
|
## Sponsors
|
||||||
|
|
||||||
[<img src="docs/assets/hogwarts.jpeg" alt="霍格沃兹测试学院" width="500">](https://ceshiren.com/)
|
[<img src="assets/hogwarts.jpeg" alt="霍格沃兹测试学院" width="500">](https://ceshiren.com/)
|
||||||
|
|
||||||
> [霍格沃兹测试开发学社](http://qrcode.testing-studio.com/f?from=httprunner&url=https://ceshiren.com)是业界领先的测试开发技术高端教育品牌,隶属于[测吧(北京)科技有限公司](http://qrcode.testing-studio.com/f?from=httprunner&url=https://www.testing-studio.com) 。学院课程由一线大厂测试经理与资深测试开发专家参与研发,实战驱动。课程涵盖 web/app 自动化测试、接口测试、性能测试、安全测试、持续集成/持续交付/DevOps,测试左移&右移、精准测试、测试平台开发、测试管理等内容,帮助测试工程师实现测试开发技术转型。通过优秀的学社制度(奖学金、内推返学费、行业竞赛等多种方式)来实现学员、学社及用人企业的三方共赢。
|
> [霍格沃兹测试开发学社](http://qrcode.testing-studio.com/f?from=httprunner&url=https://ceshiren.com)是业界领先的测试开发技术高端教育品牌,隶属于[测吧(北京)科技有限公司](http://qrcode.testing-studio.com/f?from=httprunner&url=https://www.testing-studio.com) 。学院课程由一线大厂测试经理与资深测试开发专家参与研发,实战驱动。课程涵盖 web/app 自动化测试、接口测试、性能测试、安全测试、持续集成/持续交付/DevOps,测试左移&右移、精准测试、测试平台开发、测试管理等内容,帮助测试工程师实现测试开发技术转型。通过优秀的学社制度(奖学金、内推返学费、行业竞赛等多种方式)来实现学员、学社及用人企业的三方共赢。
|
||||||
|
|
||||||
@@ -249,4 +249,5 @@ func TestCaseDemo(t *testing.T) {
|
|||||||
[allure]: https://docs.qameta.io/allure/
|
[allure]: https://docs.qameta.io/allure/
|
||||||
[HAR]: http://httparchive.org/
|
[HAR]: http://httparchive.org/
|
||||||
[plugin]: https://pkg.go.dev/plugin
|
[plugin]: https://pkg.go.dev/plugin
|
||||||
[examples]: examples/
|
[demo.json]: https://github.com/httprunner/hrp/blob/main/examples/demo.json
|
||||||
|
[examples]: https://github.com/httprunner/hrp/blob/main/examples/
|
||||||
0
docs/installation.md
Normal file
0
docs/installation.md
Normal file
63
mkdocs.yml
Normal file
63
mkdocs.yml
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
# install mkdocs
|
||||||
|
# $ pip install mkdocs # 1.1.2
|
||||||
|
# $ pip install mkdocs-material # 5.2.2
|
||||||
|
|
||||||
|
# usage
|
||||||
|
# $ mkdocs build # Build the MkDocs documentation
|
||||||
|
# $ mkdocs serve # Run the builtin development server
|
||||||
|
# $ mkdocs gh-deploy # Deploy your documentation to GitHub Pages
|
||||||
|
|
||||||
|
# Project information
|
||||||
|
site_name: HttpRunner+ Docs
|
||||||
|
site_description: HttpRunner+ User Documentation
|
||||||
|
site_author: 'debugtalk'
|
||||||
|
|
||||||
|
# Repository
|
||||||
|
repo_name: HttpRunner
|
||||||
|
repo_url: https://github.com/httprunner/hrp
|
||||||
|
edit_uri: ""
|
||||||
|
|
||||||
|
# Copyright
|
||||||
|
copyright: 'Copyright © 2021 debugtalk'
|
||||||
|
|
||||||
|
# Configuration
|
||||||
|
theme:
|
||||||
|
name: 'material'
|
||||||
|
language: 'zh'
|
||||||
|
palette:
|
||||||
|
primary: 'indigo'
|
||||||
|
accent: 'indigo'
|
||||||
|
font:
|
||||||
|
text: 'Roboto'
|
||||||
|
code: 'Roboto Mono'
|
||||||
|
|
||||||
|
# Extensions
|
||||||
|
markdown_extensions:
|
||||||
|
- admonition
|
||||||
|
- codehilite:
|
||||||
|
guess_lang: false
|
||||||
|
- toc:
|
||||||
|
permalink: true
|
||||||
|
- def_list
|
||||||
|
- pymdownx.tasklist:
|
||||||
|
custom_checkbox: true
|
||||||
|
|
||||||
|
# extra
|
||||||
|
extra:
|
||||||
|
search:
|
||||||
|
language: 'jp'
|
||||||
|
social:
|
||||||
|
- icon: material/library
|
||||||
|
link: https://debugtalk.com
|
||||||
|
- icon: fontawesome/brands/github-alt
|
||||||
|
link: 'https://github.com/httprunner'
|
||||||
|
|
||||||
|
# index pages
|
||||||
|
nav:
|
||||||
|
- Installation: installation.md
|
||||||
|
- CLI Tools:
|
||||||
|
- hrp: cmd/hrp.md
|
||||||
|
- hrp_run: cmd/hrp_run.md
|
||||||
|
- hrp_har2case: cmd/hrp_har2case.md
|
||||||
|
- hrp_boom: cmd/hrp_boom.md
|
||||||
|
- CHANGELOG: CHANGELOG.md
|
||||||
Reference in New Issue
Block a user