1
0
mirror of https://github.com/home-assistant/core.git synced 2026-02-21 02:18:47 +00:00
Files
core/script/cibuild
Paulus Schoutsen ec1d5e617e Fix CI
2015-09-19 12:29:23 -07:00

13 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