Cobertura Reports invalidate CI YAML

same here…

pipelines were working yesterday… they include the following:

python tests coverage:
  stage: tests
  variables:
    PYTHONPATH: "./:./src/"
  script:
    - |
      pipenv run pytest \
          --cov=sandpit \
          --cov-append \
          --cov-report term \
          --cov-report xml:report-coverage.xml \
          -o log_cli=1 \
          -o log_cli_level=INFO
  coverage: '/TOTAL.*\s([.\d]+)%/'
  artifacts:
    reports:
      cobertura: report-coverage.xml

as per example in (Python example)

is this a small bug related to the latest release?