-
Hello, In my workflows:
tests-workflow:
name: Tests Workflow
max_build_duration: 60
instance_type: mac_mini
environment:
flutter: stable
xcode: latest
cocoapods: 1.9.1
scripts:
- name: Integration tests Android
script: |
flutter emulators --launch emulator &
adb wait-for-device
flutter -d emulator-5554 test --machine > test-results/flutter.json integration_test --flavor free
test_report: test-results/flutter.json
- name: Integration tests iOS
script: |
flutter emulators --launch apple_ios_simulator
flutter -d iPhone test --machine > test-results/flutter.json integration_test --flavor free
test_report: test-results/flutter.json Is it possible to choose which Android emulator and which iOS emulator to run? Thanks. |
Beta Was this translation helpful? Give feedback.
Answered by
himesh-cm
Jan 17, 2023
Replies: 1 comment 4 replies
-
Hi @mregnauld, for iOS, you can find the documentation here under the iOS tab. |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
himesh-cm
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @mregnauld, for iOS, you can find the documentation here under the iOS tab.