1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-25 13:38:04 +00:00
Files
core/script/cibuild
Paulus Schoutsen 620a7eadf4 Add release script
2015-09-19 21:33:24 -07:00

15 lines
241 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.
cd "$(dirname "$0")/.."
script/test coverage
STATUS=$?
coveralls
exit $STATUS