#!/bin/sh

# script/cibuild: Setup environment for CI to run tests. This is primarily
#                 designed to run on the continuous integration server.

cd "$(dirname "$0")/.."

script/test coverage

STATUS=$?

coveralls

exit $STATUS
