mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-13 07:09:44 +08:00
11 lines
208 B
Go
11 lines
208 B
Go
package pytest
|
|
|
|
import (
|
|
"github.com/httprunner/funplugin/myexec"
|
|
)
|
|
|
|
func RunPytest(args []string) error {
|
|
args = append([]string{"run"}, args...)
|
|
return myexec.ExecPython3Command("httprunner", args...)
|
|
}
|