mirror of
https://github.com/home-assistant/core.git
synced 2026-01-25 00:52:39 +01:00
13 lines
216 B
Bash
Executable File
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
|