Files
custom_wda/Fastlane/Fastfile

14 lines
295 B
Plaintext
Raw Permalink Normal View History

2026-02-03 16:52:44 +08:00
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