mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-30 21:09:36 +08:00
11 lines
245 B
Go
11 lines
245 B
Go
package convert
|
|
|
|
import (
|
|
"github.com/httprunner/httprunner/v4/hrp/internal/builtin"
|
|
)
|
|
|
|
func convert2PyTestScripts(paths ...string) error {
|
|
args := append([]string{"make"}, paths...)
|
|
return builtin.ExecPython3Command("httprunner", args...)
|
|
}
|