Skip to content

Commit 21d35ca

Browse files
tune
1 parent 797c216 commit 21d35ca

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/functional-test.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@ jobs:
7272
wait_for_boot: true
7373
shutdown_after_job: false
7474

75+
- name: Finalize iOS simulator boot
76+
run: xcrun --sdk iphonesimulator --show-sdk-version
77+
7578
- name: Set up Python
7679
uses: actions/setup-python@v5
7780
with:
@@ -92,7 +95,7 @@ jobs:
9295

9396
- name: Run Tests
9497
run: |
95-
uv run pytest ${{ matrix.test_targets.target}} \
98+
uv run pytest -v ${{ matrix.test_targets.target}} \
9699
--doctest-modules \
97100
--junitxml=junit/test-results.xml \
98101
--cov=com \
@@ -198,7 +201,7 @@ jobs:
198201
arch: ${{ env.ARCH }}
199202
script: |
200203
make install-uv
201-
uv run pytest ${{ matrix.test_targets.target}} --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html
204+
uv run pytest -v ${{ matrix.test_targets.target}} --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html
202205
target: google_apis
203206
profile: Nexus 5X
204207
disable-spellchecker: true
@@ -351,6 +354,10 @@ jobs:
351354
wait_for_boot: true
352355
shutdown_after_job: false
353356

357+
- name: Finalize iOS simulator boot
358+
if: matrix.e2e-tests == 'flutter-ios'
359+
run: xcrun --sdk iphonesimulator --show-sdk-version
360+
354361
- name: Run IOS tests
355362
if: matrix.e2e-tests == 'flutter-ios'
356363
run: |

0 commit comments

Comments
 (0)