Skip to content

Commit

Permalink
fix: investigate ios test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
Riccardo Cipolleschi committed Aug 2, 2022
1 parent a53512f commit 564e518
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,16 @@ jobs:
- run:
name: "Run Tests: iOS Unit and Integration Tests"
command: yarn test-ios
- run:
name: Zip Derived data folder
when: always
command: |
echo "zipping tests results"
cd /Users/distiller/Library/Developer/Xcode
XCRESULT_PATH=$(find . -name '*.xcresult')
tar -zcvf xcresults.tar.gz $XCRESULT_PATH
- store_artifacts:
path: /Users/distiller/Library/Developer/Xcode/xcresults.tar.gz

# Optionally, run disabled tests
- when:
Expand All @@ -561,6 +571,7 @@ jobs:
- store_test_results:
path: ./reports/junit


# -------------------------
# JOBS: Test Android
# -------------------------
Expand Down
2 changes: 1 addition & 1 deletion scripts/.tests.env
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export ANDROID_DISABLE_AVD_TESTS=1

## IOS ##
export IOS_TARGET_OS="latest"
export IOS_DEVICE="iPhone 8"
export IOS_DEVICE="iPhone 13"
export SDK_IOS="iphonesimulator"

## CI OVERRIDES ##
Expand Down

0 comments on commit 564e518

Please sign in to comment.