jenkins-bot has submitted this change and it was merged.
Change subject: Add codecov to Appveyor builds ......................................................................
Add codecov to Appveyor builds
Change-Id: I120309d97ff0543ce5b3beb339fdf4062572bd7d --- M .appveyor.yml 1 file changed, 5 insertions(+), 2 deletions(-)
Approvals: John Vandenberg: Looks good to me, approved Ladsgroup: Looks good to me, but someone else must approve jenkins-bot: Verified
diff --git a/.appveyor.yml b/.appveyor.yml index c2ffc88..6e24d79 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -95,7 +95,10 @@ - ps: "[IO.File]::AppendAllText($env:PYWIKIBOT2_USER_CONFIG, 'max_retries = 2; maximum_GET_length = 5000; transliteration_target = None;')"
- set PYSETUP_TEST_NO_UI=1 - - "%CMD_IN_ENV% python setup.py test" + - "%CMD_IN_ENV% coverage run setup.py test" + +after_test: + - codecov
artifacts: - - path: dist* + - path: dist* .coverage coverage.xml