coverage: replace codecov with coveralls

This commit is contained in:
debugtalk
2017-06-26 21:47:57 +08:00
parent a7e0c69f8e
commit 93822fa11f
3 changed files with 5 additions and 3 deletions

View File

@@ -9,6 +9,6 @@ python:
install: install:
- pip install -r requirements.txt - pip install -r requirements.txt
script: script:
- python -m unittest discover - coverage run -m unittest discover
after_success: after_success:
- codecov - coveralls

View File

@@ -1,6 +1,7 @@
# ApiTestEngine # ApiTestEngine
[![Build Status](https://travis-ci.org/debugtalk/ApiTestEngine.svg?branch=master)](https://travis-ci.org/debugtalk/ApiTestEngine) [![Build Status](https://travis-ci.org/debugtalk/ApiTestEngine.svg?branch=master)](https://travis-ci.org/debugtalk/ApiTestEngine)
[![Coverage Status](https://coveralls.io/repos/github/debugtalk/ApiTestEngine/badge.svg?branch=master)](https://coveralls.io/github/debugtalk/ApiTestEngine?branch=master)
## 核心特性 ## 核心特性

View File

@@ -2,4 +2,5 @@ requests
termcolor termcolor
flask flask
PyYAML PyYAML
codecov coveralls
coverage