From ae4c135ae139c49ff7351de043d4ca5425c99002 Mon Sep 17 00:00:00 2001 From: mhchia Date: Wed, 24 Jul 2019 16:05:33 +0800 Subject: [PATCH] Change travis CI config --- .travis.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index a5dfefb..c72ca2e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,19 +5,18 @@ matrix: - python: 3.7 dist: xenial sudo: true + after_success: + - codecov + - python: 3.7 + dist: xenial + sudo: true + env: TOXENV=lint install: - - pip install --upgrade pip - - pip install -r requirements_dev.txt - - python setup.py develop + - pip install --upgrade pip codecov script: - - pytest --cov=./libp2p tests/ - - pylint --rcfile=.pylintrc libp2p tests - -after_success: - - codecov + - tox notifications: slack: py-libp2p:RK0WVoQZhQXLgIKfHNPL1TR2 -