From 20be3638c4d0ace435a141e886f7ee18eea88ae6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jill-J=C3=AAnn=20Vie?= Date: Thu, 2 Jan 2020 08:43:40 +0900 Subject: [PATCH] Combine Travis and Codecov --- .travis.yml | 14 ++++++++------ requirements.txt | 1 - setup.py | 2 +- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6db81ee..465a63f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,13 +1,15 @@ dist: bionic language: python python: - - "2.7" - - "pypy" - - "3.7" - - "pypy3" - - "3.8" + - "2.7" + - "pypy" + - "3.7" + - "pypy3" + - "3.8" +before_install: pip install coverage install: python setup.py install -script: coverage -m unittest +script: python -m unittest +after_success: codecov deploy: provider: pypi user: xtof.durr diff --git a/requirements.txt b/requirements.txt index e667ff7..3fc6734 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,3 @@ # development dependencies pycodestyle pylint -coverage diff --git a/setup.py b/setup.py index c3b3392..b3ff1d2 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name='tryalgo', version='1.3.0', - description='Basic and advanced algorithms and datastructures', + description='Algorithms and data structures for preparing programming competitions', author='Jill-Jênn Vie and Christoph Dürr', author_email='christoph.durr@lip6.fr', license='MIT',