2016-01-29 10:41:02 +00:00
|
|
|
#!/usr/bin/env bash
|
2016-01-29 10:36:05 +00:00
|
|
|
|
2016-01-29 10:41:02 +00:00
|
|
|
set -ueo pipefail
|
|
|
|
|
|
|
|
if [ ! -z "${COVERAGE:-}" ]; then
|
|
|
|
dub test -b unittest-cov
|
2018-01-17 23:02:06 +00:00
|
|
|
wget https://codecov.io/bash -O codecov.sh
|
|
|
|
bash codecov.sh
|
2016-01-29 10:41:02 +00:00
|
|
|
else
|
|
|
|
dub test
|
|
|
|
fi
|