change: remove live e2e

This commit is contained in:
lilong.129
2025-02-11 12:17:45 +08:00
parent c097461987
commit 81d5ea4890
7 changed files with 15 additions and 169 deletions

View File

@@ -4,6 +4,10 @@ import (
"os"
"path/filepath"
"time"
"github.com/rs/zerolog/log"
"github.com/httprunner/httprunner/v5/internal/builtin"
)
const (
@@ -35,4 +39,12 @@ func init() {
ScreenShotsPath = filepath.Join(ResultsPath, ScreenshotsDirName)
ActionLogFilePath = filepath.Join(ResultsDir, ActionLogDireName)
DeviceActionLogFilePath = "/sdcard/Android/data/io.appium.uiautomator2.server/files/hodor"
// create results directory
if err := builtin.EnsureFolderExists(ResultsPath); err != nil {
log.Fatal().Err(err).Msg("create results directory failed")
}
if err := builtin.EnsureFolderExists(ScreenShotsPath); err != nil {
log.Fatal().Err(err).Msg("create screenshots directory failed")
}
}

View File

@@ -1 +1 @@
v5.0.0+2502111148
v5.0.0+2502111217