From: Aarni Koskela Date: Wed, 30 Dec 2015 15:00:25 +0000 (+0200) Subject: Post coverage results to Codecov from Appveyor X-Git-Tag: 2.2.0~2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F308%2Fhead;p=thirdparty%2Fbabel.git Post coverage results to Codecov from Appveyor --- diff --git a/.ci/appveyor.yml b/.ci/appveyor.yml index 8bec9251..e7b13f20 100644 --- a/.ci/appveyor.yml +++ b/.ci/appveyor.yml @@ -51,11 +51,12 @@ install: - "python --version" - "python -c \"import struct; print(struct.calcsize('P') * 8)\"" # Build data files - - "pip install --upgrade pytest==2.8.5" + - "pip install --upgrade pytest==2.8.5 pytest-cov==2.2.0 codecov" - "pip install --editable ." - "python setup.py import_cldr" build: false # Not a C# project, build stuff at the test step instead. test_script: - - "%CMD_IN_ENV% python -m pytest" + - "%CMD_IN_ENV% python -m pytest --cov=babel" + - "codecov"