From a387ef097184b1e5952d6c6db5a67b7f2107323e Mon Sep 17 00:00:00 2001 From: Amod Malviya Date: Sat, 4 May 2024 16:56:40 +0530 Subject: [PATCH] ios: enable full backtrace and nocapture in tests --- .github/workflows/ios.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ios.yaml b/.github/workflows/ios.yaml index dfe7f6a..c4db43e 100644 --- a/.github/workflows/ios.yaml +++ b/.github/workflows/ios.yaml @@ -8,7 +8,7 @@ on: env: CARGO_TERM_COLOR: always - RUST_BACKTRACE: 1 + RUST_BACKTRACE: full RUST_LOG: webbrowser=TRACE IOS_TARGET: aarch64-apple-ios-sim @@ -40,12 +40,12 @@ jobs: DEVID=$(xcrun simctl create iphone-latest $IOSDEV $IOSRUNTIME) echo "==== using device $IOSDEV, $IOSRUNTIME ====" xcrun simctl boot $DEVID - sleep 5 + sleep 10 xcrun simctl list 2>&1 # Run tests - name: Run tests - run: cargo +${{ matrix.rust }} test --verbose --test test_ios -- --include-ignored + run: cargo +${{ matrix.rust }} test --verbose --test test_ios -- --include-ignored --nocapture # Code format, linting etc. - name: Check Code Formatting