From 8c2d72096fa1397465a4eee6c38dde949f05f7d2 Mon Sep 17 00:00:00 2001
From: Dave Tucker
Date: Wed, 6 May 2015 00:49:41 +0100
Subject: [PATCH] Don't fail the build on coveralls upload
If we can't upload to coveralls, don't fail the build.
Goveralls and Coveralls have been a little flaky and started throwing
http 422 errors, although I still see coverage being reported.
It's best in the interim to ignore these, although this should be
removed in future when the service is more stable
Signed-off-by: Dave Tucker
---
libnetwork/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libnetwork/Makefile b/libnetwork/Makefile
index 20ef219749..62bc036a3a 100644
--- a/libnetwork/Makefile
+++ b/libnetwork/Makefile
@@ -57,7 +57,7 @@ install-deps:
go get github.com/mattn/goveralls
coveralls:
- @goveralls -service circleci -coverprofile=coverage.coverprofile -repotoken $$COVERALLS_TOKEN
+ -@goveralls -service circleci -coverprofile=coverage.coverprofile -repotoken $$COVERALLS_TOKEN
# CircleCI's Docker fails when cleaning up using the --rm flag
# The following target is a workaround for this