change: update logs

This commit is contained in:
debugtalk
2022-04-22 20:53:14 +08:00
parent 1b6c7c9a93
commit 4bed3af166
3 changed files with 3 additions and 6 deletions

View File

@@ -1,8 +1,6 @@
package pytest
import (
"github.com/pkg/errors"
"github.com/httprunner/httprunner/hrp/internal/builtin"
"github.com/httprunner/httprunner/hrp/internal/sdk"
)
@@ -15,7 +13,7 @@ func RunPytest(args []string) error {
python3, err := builtin.EnsurePython3Venv("httprunner")
if err != nil {
return errors.Wrap(err, "ensure python venv failed")
return err
}
args = append([]string{"-m", "httprunner", "run"}, args...)