We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52e2816 commit c3c170cCopy full SHA for c3c170c
.appveyor.yml
@@ -52,7 +52,7 @@ install:
52
conda info -a &
53
conda install --yes --quiet pip
54
)
55
- - pip install nose ddt wheel coveralls
+ - pip install nose ddt wheel codecov
56
- IF "%PYTHON_VERSION%"=="2.7" (
57
pip install mock
58
@@ -79,7 +79,7 @@ install:
79
build: false
80
81
test_script:
82
- - nosetests -v --with-coverage
+ - IF "%PYTHON_VERSION%"=="3.5" (nosetests -v --with-coverage) ELSE (nosetests -v)
83
84
-#on_success:
85
-# - IF "%PYTHON_VERSION%"=="3.4" (coveralls)
+on_success:
+ - IF "%PYTHON_VERSION%"=="3.5" (codecov)
0 commit comments