From fab71bbc6213a29b01711033a90d61d9607a9cbc Mon Sep 17 00:00:00 2001 From: jidicula Date: Tue, 13 Oct 2020 15:01:29 -0400 Subject: [PATCH] [fix][Travis] Fix Travis coveralls post-build step **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 9dcef2f4..99de8c21 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,7 +22,7 @@ install: - sudo install dcm2nii* /usr/bin/ - - pip install . - - pip install python-coveralls + - pip install coveralls # command to run tests script: - echo "Download prelude"