diff --git a/cover-everything.sh b/cover-everything.sh index 500c9013b..808fc9997 100755 --- a/cover-everything.sh +++ b/cover-everything.sh @@ -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