mirror of https://github.com/zulip/zulip.git
ci: Pin codecov version to avoid nondeterministic behaviour.
* This fixes the gov find error when dicovering files. From v2.0.16, codecov-python uses "find" to discover files which is buggy on some platforms. Filed issue as https://github.com/codecov/codecov-python/issues/250
This commit is contained in:
parent
370d1b6ca7
commit
f4e70714b4
|
@ -96,7 +96,10 @@ aliases:
|
|||
name: upload coverage report
|
||||
command: |
|
||||
. /srv/zulip-py3-venv/bin/activate
|
||||
pip install codecov && codecov \
|
||||
# codecov version is fixed here, since future versions of it
|
||||
# use "find" for locating files which is buggy on some platforms.
|
||||
# See https://github.com/codecov/codecov-python/issues/250
|
||||
pip install codecov==2.0.15 && codecov \
|
||||
|| echo "Error in uploading coverage reports to codecov.io."
|
||||
|
||||
- &build_production
|
||||
|
|
Loading…
Reference in New Issue