From f7cca820b17e8eeb9d95cdd9ca9b2c0c26410446 Mon Sep 17 00:00:00 2001 From: Dennis Burke Date: Sat, 25 Jan 2020 09:46:29 -0500 Subject: [PATCH] fix internal error with coverage 5. #72 --- .coveragerc | 1 + .travis.yml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.coveragerc b/.coveragerc index 471325b..89398c9 100644 --- a/.coveragerc +++ b/.coveragerc @@ -1,6 +1,7 @@ [run] branch = True source = textile +parallel = True [report] show_missing = True diff --git a/.travis.yml b/.travis.yml index 26c989c..2641de9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ python: # command to install dependencies install: - imagesize='' - - pip install -U coveralls pytest pytest-cov 'coverage<5' codecov + - pip install -U coveralls pytest pytest-cov coverage codecov - if [[ $IMAGESIZE == true ]] ; then imagesize='[imagesize]' ; fi - pip install -e ".${imagesize}" # command to run tests