2015-09-17 07:38:52 +00: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-20 04:33:24 +00:00
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
|
2015-09-17 07:35:26 +00:00
|
|
|
script/test coverage
|
2015-09-19 19:29:23 +00:00
|
|
|
|
|
|
|
STATUS=$?
|
|
|
|
|
2015-09-17 07:35:26 +00:00
|
|
|
coveralls
|
2015-09-19 19:29:23 +00:00
|
|
|
|
|
|
|
exit $STATUS
|