DEL: UI Test on workflow

This commit is contained in:
Marcos Rodriguez Velez 2023-12-07 10:44:04 -04:00
parent 9ea54b3be7
commit 658e8d7803
No known key found for this signature in database
GPG key ID: 6030B2F48CCE86D7
2 changed files with 0 additions and 16 deletions

View file

@ -101,10 +101,6 @@ jobs:
run: bundle exec fastlane ios install_pods
working-directory: ./ios
- name: Run UI Tests
run: bundle exec fastlane ios ui_tests
working-directory: ./ios
- name: Build App
env:
NEW_BUILD_NUMBER: ${{ env.NEW_BUILD_NUMBER }}

View file

@ -74,18 +74,6 @@ platform :ios do
cocoapods
end
desc "Run UI tests"
lane :ui_tests do
scan(
workspace: "BlueWallet.xcworkspace",
scheme: "BlueWalletUITests", # Replace with your UI Test Scheme
device: "iPhone 8 (16.2)", # Specify the devices you want to run the tests on
clean: true,
code_coverage: true,
output_directory: "./test_output" # Directory where test reports will be stored
)
end
desc "Build the application"
lane :build_app_lane do
UI.message("Building the application...")