Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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`` and have switched back to the upstream version

3.2.0 - April 27, 2020
----------------------
Expand Down
4 changes: 3 additions & 1 deletion scripts/travis/submit-codecov-coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down