From 6fc2ad8760968e26389342de1a46efc4d1dd428c Mon Sep 17 00:00:00 2001 From: Patrick O'brien Date: Mon, 8 Aug 2016 18:55:03 +1000 Subject: [PATCH] Remove coveralls support because it sucks --- README.md | 1 - circle.yml | 4 ---- 2 files changed, 5 deletions(-) diff --git a/README.md b/README.md index 5cedbb2..98618fd 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,6 @@ [![GoDoc](https://godoc.org/github.com/pobri19/sqlboiler?status.svg)](https://godoc.org/github.com/pobri19/sqlboiler) [![CircleCI](https://circleci.com/gh/nullbio/sqlboiler.svg?style=shield)](https://circleci.com/gh/nullbio/sqlboiler) [![Go Report Card](https://goreportcard.com/badge/kubernetes/helm)](http://goreportcard.com/report/nullbio/sqlboiler) -[![Coverage Status](http://coveralls.io/repos/nullbio/sqlboiler/badge.png?branch=master)](http://coveralls.io/r/nullbio/sqlboiler?branch=master) SQLBoiler is a tool to generate a Go ORM tailored to your database schema. diff --git a/circle.yml b/circle.yml index 50b54c6..4a6a0ca 100644 --- a/circle.yml +++ b/circle.yml @@ -1,15 +1,11 @@ test: pre: - go get github.com/jstemmer/go-junit-report - - go get github.com/mattn/goveralls - - go get golang.org/x/tools/cmd/cover - echo -e "[postgres]\nhost=\"localhost\"\nport=5432\nuser=\"ubuntu\"\ndbname=\"sqlboiler\"" > sqlboiler.toml - createdb -U ubuntu sqlboiler - psql -U ubuntu sqlboiler < ./testdata/test_schema.sql - ./sqlboiler postgres override: - go test -v -race ./... > $CIRCLE_ARTIFACTS/gotest.txt - - go test -v -cover -race -coverprofile=/home/ubuntu/coverage.out post: - cat $CIRCLE_ARTIFACTS/gotest.txt | go-junit-report > $CIRCLE_TEST_REPORTS/junit.xml - - /home/ubuntu/.go_workspace/bin/goveralls -coverprofile=/home/ubuntu/coverage.out -service=circle-ci -repotoken=$COVERALLS_TOKEN