fix: avoid data race for httpstat

This commit is contained in:
debugtalk
2022-10-16 22:36:49 +08:00
parent efbc89a8df
commit 3ccdb00fc2
7 changed files with 18 additions and 3 deletions
+1 -1
View File
@@ -207,7 +207,7 @@ func createPythonPlugin(projectName, venv string) error {
packages := []string{
fmt.Sprintf("funppy==%s", fungo.Version),
fmt.Sprintf("httprunner==%s", version.VERSION),
fmt.Sprintf("httprunner==%s", version.HttpRunnerMinimumVersion),
}
_, err = myexec.EnsurePython3Venv(venv, packages...)
if err != nil {