ci: switch to new codecov uploader

This commit is contained in:
Robert Kaussow 2023-04-17 15:12:16 +02:00
parent e58de90d69
commit 07c40e1ecd
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
1 changed files with 2 additions and 4 deletions

View File

@ -81,14 +81,12 @@ local PipelineTest = {
PythonVersion(pyversion='3.11'),
{
name: 'codecov',
image: 'python:3.11',
image: 'thegeeklab/codecov',
environment: {
PY_COLORS: 1,
CODECOV_TOKEN: { from_secret: 'codecov_token' },
},
commands: [
'pip install codecov -qq',
'codecov --required -X gcov',
'codecov --nonZero --gcov',
],
depends_on: [
'python37-pytest',