Skip to content
Snippets Groups Projects
Commit f9b90667 authored by Dariusz Rybicki's avatar Dariusz Rybicki
Browse files

Update run-tests script

parent 02b34063
No related branches found
No related tags found
2 merge requests!102Release 1.0.0,!50Add macOS support
......@@ -4,15 +4,17 @@ set -e
echo "\n\033[1;32m▶ Xcode version\033[0m"
xcodebuild -version
if [ ! -n "$1" ]; then
if [ "$1" = "macos" ]; then
echo "\n\033[1;32m▶ Running package tests on macOS...\033[0m"
set -o pipefail && swift test 2>&1 | ./xcbeautify
elif [ "$1" = "ios" ]; then
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
elif [ "$1" = "examples" ]; then
elif [ "$1" = "ios-examples" ]; then
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
......@@ -20,8 +22,9 @@ elif [ "$1" = "examples" ]; then
else
echo "\n\033[1;31m▶ Invalid option.\033[0m Usage:"
echo " run-tests.sh - Run package tests"
echo " run-tests.sh examples - Run examples tests"
echo " run-tests.sh macos - Run package tests on macOS"
echo " run-tests.sh ios - Run package tests on iOS Simulator"
echo " run-tests.sh ios-examples - Run iOS examples tests"
exit 1
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment