From b8df9506360e191afaebfb014cf29a2b24498c3b Mon Sep 17 00:00:00 2001 From: Dariusz Rybicki <dariusz@elixxir.io> Date: Mon, 29 Aug 2022 14:50:18 +0100 Subject: [PATCH] Run XXMessenger example tests with run-tests.sh --- run-tests.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/run-tests.sh b/run-tests.sh index 80f7cd7e..4e75d7ee 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -1,3 +1,8 @@ #!/bin/sh set -e + +echo "\n\033[1;32mâ–¶ Running package tests on iOS Simulator...\033[0m" set -o pipefail && xcodebuild -scheme 'elixxir-dapps-sdk-swift-Package' -sdk iphonesimulator -destination 'platform=iOS Simulator,OS=15.5,name=iPhone 13' test | ./xcbeautify + +echo "\n\033[1;32mâ–¶ Running XXMessenger example tests on iOS Simulator...\033[0m" +set -o pipefail && xcodebuild -workspace 'Examples/xx-messenger/XXMessenger.xcworkspace' -scheme 'XXMessenger' -sdk iphonesimulator -destination 'platform=iOS Simulator,OS=15.5,name=iPhone 13' test | ./xcbeautify -- GitLab