Skip to content

Instantly share code, notes, and snippets.

@FranzBusch
Last active January 17, 2018 13:26
Show Gist options
  • Save FranzBusch/2060794502bccd04492168cf27868417 to your computer and use it in GitHub Desktop.
Save FranzBusch/2060794502bccd04492168cf27868417 to your computer and use it in GitHub Desktop.
Sixt CI Test lanes
####### Testing #######
desc "Runs all the tests"
lane :tests do
unit_tests
ui_tests
end
desc "Runs all unit tests"
lane :unit_tests do
scan(
workspace: "XXX.xcworkspace",
scheme: "XXX",
devices: ["iPhone 7"],
clean: true
)
end
desc "Runs all ui tests"
lane :ui_tests do
scan(
workspace: "XXX",
scheme: "XXX",
devices: ["iPhone 7"],
clean: true
)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment