summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAarni Koskela <akx@iki.fi>2015-12-30 17:36:37 +0200
committerAarni Koskela <akx@iki.fi>2015-12-30 17:36:37 +0200
commit6af564f9aa03ee05bcecf681b8942884dc25b9ca (patch)
treef6c5345bcc81d136a1012e16738bf7713ff6830a
parente7401590ca6aefbac2abc5542691ef9c6852d975 (diff)
parentbbacb6c28a07558c51286b491ca4c1c89f1f38a3 (diff)
downloadbabel-6af564f9aa03ee05bcecf681b8942884dc25b9ca.tar.gz
Merge pull request #308 from akx/appveyor-codecov
Post coverage results to Codecov from Appveyor
-rw-r--r--.ci/appveyor.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.ci/appveyor.yml b/.ci/appveyor.yml
index 8bec925..e7b13f2 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"