mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-16 16:17:35 +08:00
14 lines
319 B
Go
14 lines
319 B
Go
package pytest
|
|
|
|
import (
|
|
"github.com/httprunner/httprunner/v4/hrp/internal/myexec"
|
|
"github.com/httprunner/httprunner/v4/hrp/internal/sdk"
|
|
)
|
|
|
|
func RunPytest(args []string) error {
|
|
sdk.SendGA4Event("hrp_pytest", nil)
|
|
|
|
args = append([]string{"run"}, args...)
|
|
return myexec.ExecPython3Command("httprunner", args...)
|
|
}
|