From b4d52adbebd722819ca7279c66a261156db55040 Mon Sep 17 00:00:00 2001 From: Piotrek Date: Wed, 9 Sep 2020 11:37:06 +0200 Subject: [PATCH] :construction_worker: tests coverage check --- .travis.yml | 2 -- README.md | 1 + requirements_dev.txt | 4 +++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0b036225..adb29d0c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,8 +9,6 @@ install: - pip install -U -r requirements.txt - pip install -U -r requirements_dev.txt - python setup.py install - - pip install pytest-cov - - pip install coveralls script: - pytest tests --cov=supervised/ after_success: diff --git a/README.md b/README.md index 1bb0f3f5..1c54f068 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # `mljar-supervised` AutoML Python Package [![Build Status](https://travis-ci.org/mljar/mljar-supervised.svg?branch=master)](https://travis-ci.org/mljar/mljar-supervised) +[![Coverage Status](https://coveralls.io/repos/github/mljar/mljar-supervised/badge.svg?branch=master)](https://coveralls.io/github/mljar/mljar-supervised?branch=master) [![PyPI version](https://badge.fury.io/py/mljar-supervised.svg)](https://badge.fury.io/py/mljar-supervised) [![PyPI pyversions](https://img.shields.io/pypi/pyversions/mljar-supervised.svg)](https://pypi.python.org/pypi/mljar-supervised/) diff --git a/requirements_dev.txt b/requirements_dev.txt index 79884739..f70e35ff 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -1,2 +1,4 @@ pytest==5.3.5 -black==19.3b0 \ No newline at end of file +black==19.3b0 +pytest-cov +coveralls \ No newline at end of file