Remove code coverage check from CI

This commit is contained in:
Alex Stokes 2019-08-13 21:25:22 -07:00
parent 992585852f
commit 9bff7b8ebf
No known key found for this signature in database
GPG Key ID: 51CE1721B245C086
2 changed files with 1 additions and 4 deletions

View File

@ -5,10 +5,8 @@ classifiers = [f"Programming Language :: Python :: {version}" for version in ["3
extras_require = {
"test": [
"codecov>=2.0.15,<3.0.0",
"factory-boy>=2.12.0,<3.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",
],
"lint": [

View File

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