From 4d756ed5628ac7dd897a5fd504d7adb2b64333f1 Mon Sep 17 00:00:00 2001 From: jidicula Date: Sat, 10 Oct 2020 14:10:53 -0400 Subject: [PATCH] [fix][Travis] Fix Travis coveralls post-build step MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Why this change was necessary** The `coveralls` post-success build step was erroring out due to the now-wrong package being pip-installed. **What this change does** Modifies the setup step to install the correct coveralls package. **Any side-effects?** None noticed yet... Will update after running the build. **Additional context/notes/links** Resolves #143 - coveralls crashing in Travis – pip package install needs to be corrected --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5b08415a1..b14332aa0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,7 +22,7 @@ install: - sudo install dcm2nii* /usr/bin/ - - pip install -e .[testing] - - pip install python-coveralls + - pip install coveralls # command to run tests script: - echo "Download testing data"