Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable Full Support for Multiple XCTest/XCUITest Cases configured in xctestrun File #563

Merged
merged 7 commits into from
Feb 12, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
resolve threads
  • Loading branch information
bahrimootaz committed Feb 12, 2025
commit de71704314dbca1103f4a145111736f8ec1d214b
4 changes: 2 additions & 2 deletions ios/testmanagerd/xcuitestrunner.go
Original file line number Diff line number Diff line change
Expand Up @@ -623,12 +623,12 @@ func getappInfo(bundleID string, apps []installationproxy.AppInfo) (appInfo, err
func getUserInstalledApps(err error, device ios.DeviceEntry) []installationproxy.AppInfo {
svc, err := installationproxy.New(device)
if err != nil {
log.Debugf("we countn't connect to ios device: %w", err)
log.Debugf("we countn't connect to ios device: %+v", err)
return nil
}
installedApps, err := svc.BrowseUserApps()
if err != nil {
log.Debugf("we couldn't fetch the installed user apps: %w", err)
log.Debugf("we couldn't fetch the installed user apps: %+v", err)
return nil
}
svc.Close()
Expand Down
Loading