Files
heroku-buildpack-python/tests.sh
T
2017-03-10 11:58:38 -05:00

16 lines
268 B
Bash
Executable File

#!/usr/bin/env sh
if [[ ! "$STACK" ]]; then
echo '$STACK must be set! (heroku-16 | cedar-14)'
exit 1
fi
if [[ "$STACK" == "cedar-14" ]]; then
make test-cedar-14
exit $?
fi
if [[ "$STACK" == "heroku-16" ]]; then
make test-heroku-16
exit $?
fi