Skip to content

Instantly share code, notes, and snippets.

@Osein
Last active July 2, 2019 08:14
Show Gist options
  • Select an option

  • Save Osein/8928f4ecc534468c731d294a2848e6ee to your computer and use it in GitHub Desktop.

Select an option

Save Osein/8928f4ecc534468c731d294a2848e6ee to your computer and use it in GitHub Desktop.
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