Skip to content

Commit

Permalink
PIA-1265: tvOS unit tests ci setup
Browse files Browse the repository at this point in the history
  • Loading branch information
kp-geneva-parayno committed Feb 8, 2024
1 parent 0a2d002 commit 382dff8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
cancel-in-progress: true
jobs:
build:
runs-on: macos-13
runs-on: macos-14
env:
TEST_RUNNER_PIA_TEST_USER: ${{ secrets.PIA_ACCOUNT_USERNAME}}
TEST_RUNNER_PIA_TEST_PASSWORD: ${{ secrets.PIA_ACCOUNT_PASSWORD }}
Expand All @@ -28,10 +28,13 @@ jobs:
- name: Install Fastlane
run: gem install fastlane

- name: Run unit tests
- name: Run tvOS unit tests
run: bundle exec fastlane tvOStests

- name: Run iOS unit tests
run: bundle exec fastlane tests

- name: Run e2e tests
- name: Run iOS e2e tests
run: bundle exec fastlane e2e_tests
timeout-minutes: 45

Expand Down
4 changes: 4 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ platform :ios do
run_tests(scheme: "PIA VPN")
end

lane :tvOStests do
run_tests(scheme: "PIA VPN-tvOS")
end

lane :e2e_tests do
run_tests(
scheme: "PIA VPN dev",
Expand Down

0 comments on commit 382dff8

Please sign in to comment.