Codecov.yml range colors not updating

Description

I previously had my range set real low, like 10…20, just cause I was playing around. Now I’ve set it to 70…90 and everything is still bright green on the svg visualisations. Why aren’t this settings taking hold?

Repository

private

Versions

Safari v12.1

Additional Information

This is my codecov.yml

codecov:
  require_ci_to_pass: yes

coverage:
  precision: 2
  round: down
  range: 70...90

  status:
    changes: on
    patch: 
      default: false
      api:
        flags: api
        paths:
          - src/api/*
        target: 90
        threshold: 2
    project:
      default: false
      api:
        flags: api
        paths:
          - src/api/*
        target: 90
        threshold: 2

parsers:
  gcov:
    branch_detection:
      conditional: yes
      loop: yes
      method: no
      macro: no

comment:
  layout: "reach,diff,flags,tree"
  behavior: default
  require_changes: yes

Hey @msaspence thanks for reaching out!

So I are you saying the colors were also green when the range was 10-20 and then stayed green when the range went up but coverage did not?

Also, can you share the repo in question so I can see (if public repo)? If not public, your GH username so I can check logs?

Jerrod