Skip to content

Commit

Permalink
PIA-000: Update fastlane test options
Browse files Browse the repository at this point in the history
  • Loading branch information
kp-laura-sempere committed Jun 10, 2024
1 parent 4348171 commit 1e9a142
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ios_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: ios_build_and_test
on:
pull_request:
workflow_dispatch:
push:
branches:
- PIA-000_update_e2e_test_options
concurrency:
group: "${{ github.run_id }}"
cancel-in-progress: true
Expand Down
9 changes: 6 additions & 3 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ platform :ios do
key_content = ENV['APP_STORE_CONNECT_KEY']

lane :tests do
run_tests(scheme: "PIA VPN")
run_tests(scheme: "PIA VPN dev", devices: ["iPhone 15"], prelaunch_simulator: true)
end

lane :tvOStests do
Expand All @@ -18,9 +18,12 @@ platform :ios do
run_tests(
scheme: "PIA VPN dev",
testplan: "PIA-VPN-e2e-simulator",
devices: ["iPhone 14"],
devices: ["iPhone 15"],
prelaunch_simulator: true,
test_without_building: true
test_without_building: true,
reset_simulator: true,
open_report: true,
disable_concurrent_testing: true
)
end

Expand Down

0 comments on commit 1e9a142

Please sign in to comment.