14 lines
241 B
Bash
Executable file
14 lines
241 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.
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
script/test coverage
|
|
|
|
STATUS=$?
|
|
|
|
coveralls
|
|
|
|
exit $STATUS
|