Last active
July 2, 2019 08:14
-
-
Save Osein/8928f4ecc534468c731d294a2848e6ee to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| desc "Run unit and ui tests" | |
| lane :runTests do | |
| run_tests( | |
| scheme: "MyAppScheme", | |
| #code_coverage: true | |
| ) | |
| end | |
| desc "Create coverage html" | |
| lane :createCoverageReport do | |
| slather( | |
| scheme: "MyAppScheme", | |
| proj: "MyApp.xcodeproj", | |
| html: true, | |
| ignore: [ | |
| "Pods/*", | |
| "MyApp/Library/*" | |
| ] | |
| ) | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment