From 488c0f2aa9dc2a7ea7d5f1dbc038ef58020b839d Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Fri, 4 Jan 2019 17:04:57 -0800 Subject: [PATCH] Update .travis.yml --- .travis.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 60ed11e..c6303c4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,13 +4,15 @@ python: - "3.6" - "3.5" script: - - "python3 setup.py test" + - "python setup.py test" + - "py.test tests/ -v --cov wavinfo --cov-report term-missing" before_install: - "sudo apt-get update" - "sudo add-apt-repository universe" - - "sudo apt-get install -y ffmpeg" - - "pip3 install python-coveralls + - "sudo apt-get install -y ffmpeg" + - "pip install pytest-cov" + - "pip install python-coveralls" install: - - "pip3 install setuptools" + - "pip install setuptools" after_success: - coveralls