From 3681691fb1a25f4479b1ab727345aec6401d40d6 Mon Sep 17 00:00:00 2001 From: Marcell Vazquez-Chanlatte Date: Wed, 22 Nov 2017 23:08:13 -0800 Subject: [PATCH] added automated coverage output for tests --- .travis.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index ba5456a..a039d87 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,7 @@ - language: python - python: - - "3.6" - install: "pip install -r requirements.txt" - script: pytest --flake8 --cov=stl -x --cov-report=html +language: python +python: + - "3.6" +install: "pip install -r requirements.txt" +script: pytest --flake8 --cov=stl -x --cov-report=html +after_success: + - codecov