12 lines
216 B
Bash
Executable file
12 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
|