From aa242fb37891510236d917a51e326cb43231af30 Mon Sep 17 00:00:00 2001 From: Brian Martin Date: Wed, 5 Jun 2019 00:15:26 -0400 Subject: [PATCH] add --cov to builds --- .travis.yml | 2 +- appveyor.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2b89a4a..3b82981 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,7 @@ install: - pip install pipenv - pipenv install --dev -script: pipenv run python -m pytest +script: pipenv run python -m pytest --cov=./ after_success: - codecov \ No newline at end of file diff --git a/appveyor.yml b/appveyor.yml index fd6ca1b..32a049a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -19,7 +19,7 @@ test_script: # Note that you must use the environment variable %PYTHON% to refer to # the interpreter you're using - Appveyor does not do anything special # to put the Python version you want to use on PATH. - - "pipenv run python -m pytest" + - "pipenv run python -m pytest --cov=./" after_succss: - codecov \ No newline at end of file