exec pint --no-color lint rules
! stdout .
cmp stderr stderr.txt

-- stderr.txt --
level=INFO msg="Loading configuration file" path=.pint.hcl
level=INFO msg="Finding all rules to check" paths=["rules"]
level=INFO msg="Checking Prometheus rules" entries=2 workers=10 online=true
-- rules/1.yml --
groups:
- name: foo
  partial_response_strategy: warn
  rules:
  - alert: foo
    expr: up == 0

-- rules/2.yml --
groups:
- name: foo
  partial_response_strategy: abort
  rules:
  - record: bar
    expr: sum(up)

-- .pint.hcl --
parser {
  schema = "thanos"
}
