Merge pull request #1773 from molecula/fix-ci

Added back code coverage
This commit is contained in:
tgruben 2021-11-16 12:32:03 -06:00 committed by GitHub
commit 7ee343c8fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,6 +4,6 @@
# very slow but oh well what are you gonna do, not test things?
# note it skips the roaring migrate
echo "mode: atomic" > coverage.out
for pkg in $(go list all | grep featurebase | grep -v roaring-migrate); do
for pkg in $(go list all | grep featurebase ); do
go test -coverprofile=pkgcoverage.out -covermode=atomic $pkg;
tail -n +2 pkgcoverage.out >> coverage.out; done