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
|
|
|
|
|
2015-09-17 00:35:26 -07:00
|
|
|
script/test coverage
|
2015-09-19 12:29:23 -07:00
|
|
|
|
|
|
|
STATUS=$?
|
|
|
|
|
2015-09-17 00:35:26 -07:00
|
|
|
coveralls
|
2015-09-19 12:29:23 -07:00
|
|
|
|
|
|
|
exit $STATUS
|