summaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
authorKostis Anagnostopoulos <ankostis@gmail.com>2016-10-12 17:22:16 +0200
committerKostis Anagnostopoulos <ankostis@gmail.com>2016-10-12 17:56:35 +0200
commitc3c170c3e74b8ef90a2c7f47442eabce27411231 (patch)
treeae1878161eb1fbfd7fa2489ebae30e987bc5bb75 /.appveyor.yml
parent52e28162710eb766ffcfa375ef350078af52c094 (diff)
downloadgitpython-c3c170c3e74b8ef90a2c7f47442eabce27411231.tar.gz
build: run codecov on Appveyor
[travisci skip]
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index a9b8adc1..0e9a9473 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -52,7 +52,7 @@ install:
conda info -a &
conda install --yes --quiet pip
)
- - pip install nose ddt wheel coveralls
+ - pip install nose ddt wheel codecov
- IF "%PYTHON_VERSION%"=="2.7" (
pip install mock
)
@@ -79,7 +79,7 @@ install:
build: false
test_script:
- - nosetests -v --with-coverage
+ - IF "%PYTHON_VERSION%"=="3.5" (nosetests -v --with-coverage) ELSE (nosetests -v)
-#on_success:
-# - IF "%PYTHON_VERSION%"=="3.4" (coveralls)
+on_success:
+ - IF "%PYTHON_VERSION%"=="3.5" (codecov)