From 1cb6001c19202cf7e274de872e56b981288a3832 Mon Sep 17 00:00:00 2001 From: Jimmy Brisson Date: Thu, 5 Oct 2017 11:58:35 -0500 Subject: [PATCH] Enable coveralls --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 03f7e921..1cf057ad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ python: install: - pip install coverage + - pip install coveralls - pip install prettytable - pip install PySerial - pip install mbed-ls @@ -14,8 +15,8 @@ install: - pip install lockfile - pip install colorama -script: python setup.py test +script: coverage run setup.py test after_success: - - coverage run setup.py test - coverage html + - coveralls