-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow screenshot export to be divisible by model, OS, & test run conf…
…iguration (#23) Change Description: Introducing changes to implement #21. These changes introduce new options on "xcparse screenshots" to allow for division of screenshots by model, OS version, & test plan run configuration. Each of these is a new optional argument that can be added so that users of xcparse have choice about what kind of division they want. So if a user wanted to just export by model, they could run "xcparse screenshots --model ". If they want division by model, OS, & test plan run config, they'd run "xcparse screenshots --model --os --test-run " Test Plan/Testing Performed: Ran tests on another project with multiple devices & OS versions & test plan configurations. Saw that the screenshots followed the division given by the options provided. Also ensured that the progress bars for each would consolidate appropriately where users would expect.
- Loading branch information
1 parent
0448246
commit 0b0c247
Showing
14 changed files
with
2,412 additions
and
3,190 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// | ||
// XCResult.swift | ||
// XCParseCore | ||
// | ||
// Created by Alex Botkin on 10/14/19. | ||
// | ||
|
||
import Foundation | ||
|
||
public struct XCResult { | ||
public let path: String | ||
public let console: Console | ||
public lazy var invocationRecord: ActionsInvocationRecord? = ActionsInvocationRecord.recordFromXCResult(self) | ||
|
||
public init(path xcresultPath: String, console: Console = Console()) { | ||
self.path = xcresultPath | ||
self.console = console | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
0b0c247
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍🏻