hass-core/script/cibuild

21 lines
320 B
Text
Raw Normal View History

2015-09-17 00:38:52 -07:00
#!/bin/sh
# script/cibuild: Setup environment for CI to run tests. This is primarily
# designed to run on the continuous integration server.
2015-09-19 21:33:24 -07:00
cd "$(dirname "$0")/.."
2015-12-18 00:09:33 -08:00
if [ "$TRAVIS_PYTHON_VERSION" != "3.4" ]; then
NO_LINT=1
fi
export NO_LINT
script/test coverage
2015-09-19 12:29:23 -07:00
STATUS=$?
coveralls
2015-09-19 12:29:23 -07:00
exit $STATUS