From 8a879d86b698cc12c4b597c2ccc3488eb69d98d4 Mon Sep 17 00:00:00 2001 From: Zac Date: Thu, 2 Nov 2017 07:25:06 +1000 Subject: [PATCH 1/2] Added CodeCov support --- .travis.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.travis.yml b/.travis.yml index 24cb8ed..9ebe003 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,13 @@ install: script: - xbuild /p:Configuration=Release CSharpHTTPClient/CSharpHTTPClient.sln - mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe UnitTest/bin/Release/UnitTest.dll -domain:None + - curl -s https://codecov.io/bash > .codecov + - chmod +x .codecov + - ./.codecov + +after_success: + - bash <(curl -s https://codecov.io/bash) + notifications: hipchat: rooms: From 99dadf3ad7f20ab6c851f13b6d45cf9757d0cc0b Mon Sep 17 00:00:00 2001 From: Zac Date: Sun, 12 Nov 2017 07:09:32 +1000 Subject: [PATCH 2/2] fixed indentation --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9ebe003..171124b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,9 +9,9 @@ install: script: - xbuild /p:Configuration=Release CSharpHTTPClient/CSharpHTTPClient.sln - mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe UnitTest/bin/Release/UnitTest.dll -domain:None - - curl -s https://codecov.io/bash > .codecov - - chmod +x .codecov - - ./.codecov +- curl -s https://codecov.io/bash > .codecov +- chmod +x .codecov +- ./.codecov after_success: - bash <(curl -s https://codecov.io/bash)