diff options
author | Dundar Göc <gocdundar@gmail.com> | 2022-01-26 20:54:44 +0100 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2022-01-26 23:44:02 +0100 |
commit | b30ac599f83d6399f2f77f4139f448f722de7244 (patch) | |
tree | c7f7e74501d57757a05f20a652bdd2f5695549f0 /ci/common/submit_coverage.sh | |
parent | 6006e15e7ac055de1e87bbd12d17d017dfa8737f (diff) | |
download | rneovim-b30ac599f83d6399f2f77f4139f448f722de7244.tar.gz rneovim-b30ac599f83d6399f2f77f4139f448f722de7244.tar.bz2 rneovim-b30ac599f83d6399f2f77f4139f448f722de7244.zip |
ci: remove all code containing python2
Also change all mentions of python 3 to just python.
Diffstat (limited to 'ci/common/submit_coverage.sh')
-rwxr-xr-x | ci/common/submit_coverage.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/common/submit_coverage.sh b/ci/common/submit_coverage.sh index 9c7887de0b..cb6ab62b5b 100755 --- a/ci/common/submit_coverage.sh +++ b/ci/common/submit_coverage.sh @@ -18,12 +18,12 @@ if ! [ -f "$codecov_sh" ]; then curl --retry 5 --silent --fail -o "$codecov_sh" https://codecov.io/bash chmod +x "$codecov_sh" - python3 -m pip install --quiet --user gcovr + python -m pip install --quiet --user gcovr fi ( cd build - python3 -m gcovr --branches --exclude-unreachable-branches --print-summary -j 2 --exclude '.*/auto/.*' --root .. --delete -o ../coverage.xml --xml + python -m gcovr --branches --exclude-unreachable-branches --print-summary -j 2 --exclude '.*/auto/.*' --root .. --delete -o ../coverage.xml --xml ) # Upload to codecov. |