Fastfile 295 B

12345678910111213
  1. XC_PROJECT = File.absolute_path('../WebDriverAgent.xcodeproj')
  2. lane :test do
  3. # https://docs.fastlane.tools/actions/scan/
  4. run_tests(
  5. project: XC_PROJECT,
  6. fail_build: true,
  7. scheme: ENV['SCHEME'],
  8. sdk: ENV['SDK'],
  9. destination: ENV['DEST'],
  10. number_of_retries: 3
  11. )
  12. end