| 12345678910111213 |
- XC_PROJECT = File.absolute_path('../WebDriverAgent.xcodeproj')
- lane :test do
- # https://docs.fastlane.tools/actions/scan/
- run_tests(
- project: XC_PROJECT,
- fail_build: true,
- scheme: ENV['SCHEME'],
- sdk: ENV['SDK'],
- destination: ENV['DEST'],
- number_of_retries: 3
- )
- end
|