blob: 03046afbe355eb22bdd610397ed8ceeeb8be3efe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
set -e
cd "$(dirname "$0")/.."
[ -z "$DEBUG" ] || set -x
echo ["$(date "+%H:%M:%S")"] "==> Running setup…"
bin/setup
echo ["$(date "+%H:%M:%S")"] "==> Running tests…"
bundle exec rspec "$@"
|