diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c3cd7089df..d58affb614 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -55,6 +55,7 @@ Removed * Removed ``CentOS 6``/``RHEL 6`` support #4984 Contributed by Amanda McGuinness (@amanda11 Ammeon Solutions) +* Removed our fork of ``codecov-python`` for CI and have switched back to the upstream version (improvement) #5002 3.2.0 - April 27, 2020 ---------------------- diff --git a/scripts/travis/submit-codecov-coverage.sh b/scripts/travis/submit-codecov-coverage.sh index 0452e860a5..6bc160b72f 100755 --- a/scripts/travis/submit-codecov-coverage.sh +++ b/scripts/travis/submit-codecov-coverage.sh @@ -19,7 +19,9 @@ if [ ${TRAVIS_TEST_RESULT} -eq 0 ]; then # NOTE: We need eventlet installed so coverage can be correctly combined. This is needed because we are covering code which utilizes eventlet. # Without eventlet being available to the coverage command it will fail with "Couldn't trace with concurrency=eventlet, the module isn't installed." pip install eventlet - pip install -e "git+https://github.com/StackStorm/codecov-python.git@better_error_output#egg=codecov" + # NOTE: codecov only supports coverage==4.5.2 + pip install coverage<5.0 + pip install codecov # 2. Combine coverage report and submit coverage report to codecovs.io codecov --required