mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-06 20:32:44 +08:00
20 lines
312 B
Go
20 lines
312 B
Go
package convert
|
|
|
|
import (
|
|
_ "embed"
|
|
"os"
|
|
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
func convert2GoTestScripts(paths ...string) error {
|
|
log.Warn().Msg("convert to gotest scripts is not supported yet")
|
|
os.Exit(1)
|
|
|
|
// format pytest scripts with black
|
|
return nil
|
|
}
|
|
|
|
//go:embed testcase.tmpl
|
|
var testcaseTemplate string
|