Merge pull request #241 from ralexstokes/remove-codecov-ci

Remove code coverage check from CI
This commit is contained in:
Alex Stokes 2019-08-14 08:58:24 -07:00 committed by GitHub
commit 3736592a7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 5 deletions

View File

@ -1,4 +1,4 @@
# py-libp2p [![Build Status](https://travis-ci.com/libp2p/py-libp2p.svg?branch=master)](https://travis-ci.com/libp2p/py-libp2p) [![codecov](https://codecov.io/gh/libp2p/py-libp2p/branch/master/graph/badge.svg)](https://codecov.io/gh/libp2p/py-libp2p) [![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/py-libp2p/Lobby)[![Freenode](https://img.shields.io/badge/freenode-%23libp2p-yellow.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23libp2p) # py-libp2p [![Build Status](https://travis-ci.com/libp2p/py-libp2p.svg?branch=master)](https://travis-ci.com/libp2p/py-libp2p) [![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/py-libp2p/Lobby)[![Freenode](https://img.shields.io/badge/freenode-%23libp2p-yellow.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23libp2p)

View File

@ -5,10 +5,8 @@ classifiers = [f"Programming Language :: Python :: {version}" for version in ["3
extras_require = { extras_require = {
"test": [ "test": [
"codecov>=2.0.15,<3.0.0",
"factory-boy>=2.12.0,<3.0.0", "factory-boy>=2.12.0,<3.0.0",
"pytest>=4.6.3,<5.0.0", "pytest>=4.6.3,<5.0.0",
"pytest-cov>=2.7.1,<3.0.0",
"pytest-asyncio>=0.10.0,<1.0.0", "pytest-asyncio>=0.10.0,<1.0.0",
], ],
"lint": [ "lint": [

View File

@ -29,8 +29,7 @@ deps =
passenv = CI TRAVIS TRAVIS_* passenv = CI TRAVIS TRAVIS_*
extras = test extras = test
commands = commands =
pytest --cov=./libp2p tests/ pytest tests/
codecov
basepython = basepython =
py37: python3.7 py37: python3.7