Last active
January 17, 2018 13:26
-
-
Save FranzBusch/2060794502bccd04492168cf27868417 to your computer and use it in GitHub Desktop.
Sixt CI Test lanes
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
####### 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