hass-core/script/cibuild
Paulus Schoutsen ec1d5e617e Fix CI
2015-09-19 12:29:23 -07:00

12 lines
216 B
Bash
Executable file

#!/bin/sh
# script/cibuild: Setup environment for CI to run tests. This is primarily
# designed to run on the continuous integration server.
script/test coverage
STATUS=$?
coveralls
exit $STATUS