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