From bbacb6c28a07558c51286b491ca4c1c89f1f38a3 Mon Sep 17 00:00:00 2001 From: Aarni Koskela Date: Wed, 30 Dec 2015 17:00:25 +0200 Subject: [PATCH] Post coverage results to Codecov from Appveyor --- .ci/appveyor.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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" -- 2.47.2