8 lines
No EOL
195 B
Bash
Executable file
8 lines
No EOL
195 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# Coverage Report
|
|
#
|
|
# Generates and opens a code coverage report for the entire project.
|
|
|
|
mix coveralls.html || { echo 'Tests failed!'; exit 1; }
|
|
open cover/excoveralls.html |