This commit is contained in:
Robert Kaussow 2023-04-17 15:57:22 +02:00
parent b487b66c6e
commit 79bb0756e5
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
3 changed files with 4 additions and 5 deletions

View File

@ -86,7 +86,7 @@ local PipelineTest = {
CODECOV_TOKEN: { from_secret: 'codecov_token' },
},
commands: [
'codecov --nonZero --gcov',
'codecov --nonZero',
],
depends_on: [
'python37-pytest',

View File

@ -122,7 +122,7 @@ steps:
- name: codecov
image: thegeeklab/codecov
commands:
- codecov --nonZero --gcov
- codecov --nonZero
environment:
CODECOV_TOKEN:
from_secret: codecov_token
@ -447,6 +447,6 @@ depends_on:
---
kind: signature
hmac: 222d704a7d6c0eb195390a67206c582d5a1423bdfba700cfc5fef714966b8492
hmac: c738c9bc34f7be21d69926ddc23004af9f55e162b8221423e70008c6441c653c
...

View File

@ -70,8 +70,7 @@ skip_glob = ["**/.env*", "**/env/*", "**/.venv/*", "**/docs/*"]
addopts = "prometheuspvesd --cov=prometheuspvesd --cov-report=xml:coverage.xml --cov-report=term --no-cov-on-fail"
filterwarnings = [
"ignore::FutureWarning",
"ignore:.*distutils.*:DeprecationWarning",
"ignore:.*collections.*:DeprecationWarning",
"ignore::DeprecationWarning",
"ignore:.*pep8.*:FutureWarning",
]