From 8cb6fcefa9bb891841a35b7c3d229a707efc962b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20L=C3=B3pez?= Date: Thu, 22 Nov 2018 18:10:05 -0600 Subject: [PATCH] message --- .travis.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index dd2d18a..37d2058 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,24 @@ language: python -script: python setup.py test +script: + - python setup.py test jobs: include: - stage: test python: 3.6 - - + - # same stage name (test) python: 3.7 dist: xenial sudo: true + - stage: code coverage + python: 3.7 + dist: xenial + sudo: true + install: pip install coveralls + script: + - coverage run --source=minpkg setup.py test + - coveralls - stage: Pypi Upload python: 3.7 dist: xenial