bump version to v4.2.0

This commit is contained in:
debugtalk
2022-07-26 10:20:20 +08:00
parent 1c8291b7a5
commit 191123734e
23 changed files with 48 additions and 46 deletions

View File

@@ -81,15 +81,15 @@ type SessionRunner struct {
```go
func (r *SessionRunner) Start() error {
...
// run step in sequential order
...
// run step in sequential order
for _, step := range r.testCase.TestSteps {
_, err := step.Run(r)
if err != nil && r.hrpRunner.failfast {
return errors.Wrap(err, "abort running due to failfast setting")
}
}
...
...
}
```

View File

@@ -15,7 +15,7 @@ import (
var runCurlCmd = &cobra.Command{
Use: "curl URLs",
Short: "run API test with go engine by curl command",
Short: "run API test with curl command",
Args: cobra.MinimumNArgs(1),
DisableFlagParsing: true,
PreRun: func(cmd *cobra.Command, args []string) {
@@ -31,7 +31,7 @@ var runCurlCmd = &cobra.Command{
var boomCurlCmd = &cobra.Command{
Use: "curl URLs",
Short: "run load test with boomer by curl command",
Short: "run load test with curl command",
Args: cobra.MinimumNArgs(1),
DisableFlagParsing: true,
PreRun: func(cmd *cobra.Command, args []string) {

View File

@@ -1,4 +1,4 @@
# NOTE: Generated By hrp v4.1.6, DO NOT EDIT!
# NOTE: Generated By hrp v4.2.0, DO NOT EDIT!
import sys
import os
@@ -10,7 +10,6 @@ from debugtalk import *
if __name__ == "__main__":
import funppy
funppy.register("get_user_agent", get_user_agent)
funppy.register("sleep", sleep)
funppy.register("sum", sum)

View File

@@ -1,4 +1,4 @@
// NOTE: Generated By hrp v4.1.6, DO NOT EDIT!
// NOTE: Generated By hrp v4.2.0, DO NOT EDIT!
package main
import (

View File

@@ -1 +1 @@
v4.1.6
v4.2.0