diff --git a/run-tests.sh b/run-tests.sh index f1c6697abe33752b88328b917a77d044d292edee..e4f69b382b61d3b63c5e28a7e26a8d5ef2a20782 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -1,8 +1,10 @@ #!/bin/sh set -e -echo "\n\033[1;32mâ–¶ Running tests on macOS...\033[0m" +echo -e "\e[0Ksection_start:`date +%s`:test_macos\r\e[0KRunning tests on macOS..." set -o pipefail && swift test 2>&1 | ./xcbeautify +echo -e "\e[0Ksection_end:`date +%s`:test_macos\r\e[0K" -echo "\n\033[1;32mâ–¶ Running tests on iOS Simulator...\033[0m" +echo -e "\e[0Ksection_start:`date +%s`:test_ios\r\e[0KRunning tests on iOS Simulator..." 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 -e "\e[0Ksection_end:`date +%s`:test_ios\r\e[0K"