blob: abcddcab450b3abba198b2419e22dfc0aa5fb095 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/bash
set -o errexit
set -o nounset
set -o pipefail
# log info to console
echo "Starting unit tests for Apex..."
echo "---------------------------------------------------------------------------------------"
echo
pushd ci/ > /dev/null
./test.sh
popd
echo "--------------------------------------------------------"
echo "Unit Tests Done!"
|