crossmate

A collaborative crossword app for iOS
Log | Files | Refs | LICENSE

test-unit.sh (327B)


      1 #!/bin/bash
      2 set -euo pipefail
      3 
      4 source "$(dirname "${BASH_SOURCE[0]}")/select-simulator.sh"
      5 select_simulator "${1:-26}"
      6 
      7 echo "Using ${DEVICE}, iOS ${RUNTIME}"
      8 xcodebuild test \
      9   -scheme "Crossmate" \
     10   -destination "platform=iOS Simulator,name=${DEVICE},OS=${DESTINATION_OS}" \
     11   -only-testing:"Crossmate Unit Tests" \
     12   2>&1