Merge pull request #1248 from httprunner/refactor-parameters

refactor parameters iterator
This commit is contained in:
debugtalk
2022-04-17 15:56:18 +08:00
committed by GitHub
31 changed files with 1236 additions and 666 deletions

View File

@@ -1,6 +1,6 @@
## hrp
One-stop solution for HTTP(S) testing.
Next-Generation API Testing Solution.
### Synopsis
@@ -12,12 +12,13 @@ One-stop solution for HTTP(S) testing.
██║ ██║ ██║ ██║ ██║ ██║ ██║╚██████╔╝██║ ╚████║██║ ╚████║███████╗██║ ██║
╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝╚═╝ ╚═══╝╚══════╝╚═╝ ╚═╝
hrp (HttpRunner+) aims to be a one-stop solution for HTTP(S) testing, covering API testing,
load testing and digital experience monitoring (DEM). Enjoy! ✨ 🚀 ✨
HttpRunner is an open source API testing tool that supports HTTP(S)/HTTP2/WebSocket/RPC
network protocols, covering API testing, performance testing and digital experience
monitoring (DEM) test types. Enjoy! ✨ 🚀 ✨
License: Apache-2.0
Website: https://httprunner.com
Github: https://github.com/httprunner/httprunner/hrp
Github: https://github.com/httprunner/httprunner
Copyright 2021 debugtalk
### Options
@@ -30,7 +31,8 @@ Copyright 2021 debugtalk
* [hrp boom](hrp_boom.md) - run load test with boomer
* [hrp har2case](hrp_har2case.md) - convert HAR to json/yaml testcase files
* [hrp run](hrp_run.md) - run API test
* [hrp pytest](hrp_pytest.md) - run API test with pytest
* [hrp run](hrp_run.md) - run API test with go engine
* [hrp startproject](hrp_startproject.md) - create a scaffold project
###### Auto generated by spf13/cobra on 26-Mar-2022
###### Auto generated by spf13/cobra on 17-Apr-2022

View File

@@ -39,6 +39,6 @@ hrp boom [flags]
### SEE ALSO
* [hrp](hrp.md) - One-stop solution for HTTP(S) testing.
* [hrp](hrp.md) - Next-Generation API Testing Solution.
###### Auto generated by spf13/cobra on 26-Mar-2022
###### Auto generated by spf13/cobra on 17-Apr-2022

View File

@@ -22,6 +22,6 @@ hrp har2case $har_path... [flags]
### SEE ALSO
* [hrp](hrp.md) - One-stop solution for HTTP(S) testing.
* [hrp](hrp.md) - Next-Generation API Testing Solution.
###### Auto generated by spf13/cobra on 26-Mar-2022
###### Auto generated by spf13/cobra on 17-Apr-2022

19
docs/cmd/hrp_pytest.md Normal file
View File

@@ -0,0 +1,19 @@
## hrp pytest
run API test with pytest
```
hrp pytest $path ... [flags]
```
### Options
```
-h, --help help for pytest
```
### SEE ALSO
* [hrp](hrp.md) - Next-Generation API Testing Solution.
###### Auto generated by spf13/cobra on 17-Apr-2022

View File

@@ -1,6 +1,6 @@
## hrp run
run API test
run API test with go engine
### Synopsis
@@ -32,6 +32,6 @@ hrp run $path... [flags]
### SEE ALSO
* [hrp](hrp.md) - One-stop solution for HTTP(S) testing.
* [hrp](hrp.md) - Next-Generation API Testing Solution.
###### Auto generated by spf13/cobra on 26-Mar-2022
###### Auto generated by spf13/cobra on 17-Apr-2022

View File

@@ -17,6 +17,6 @@ hrp startproject $project_name [flags]
### SEE ALSO
* [hrp](hrp.md) - One-stop solution for HTTP(S) testing.
* [hrp](hrp.md) - Next-Generation API Testing Solution.
###### Auto generated by spf13/cobra on 26-Mar-2022
###### Auto generated by spf13/cobra on 17-Apr-2022