From 0bce2d03e4b3fa4fe8c10564e4f2b584f966bcb1 Mon Sep 17 00:00:00 2001 From: centaurialpha Date: Sun, 24 Mar 2019 11:45:25 -0300 Subject: [PATCH] Tests: workaround for avoid fail test with python 3.6 and pytest-cov --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index da29fe68..1dcffb85 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,13 +10,13 @@ before_install: install: - pip install pip --upgrade - - pip install pytest pytest-qt pytest-cov + - pip install pytest pytest-qt pytest-cov==2.5.1 - pip install PyQt5==5.11.2 - pip install coveralls before_script: rm --recursive --force --verbose *.py[cod] -script: pytest tests --cov=src.core.interpreter --cov-report term-missing +script: pytest tests --cov=src.core.interpreter --cov-report term-missing -s after_success: - coveralls