• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

pantsbuild / pants / 18252174847

05 Oct 2025 01:36AM UTC coverage: 43.382% (-36.9%) from 80.261%
18252174847

push

github

web-flow
run tests on mac arm (#22717)

Just doing the minimal to pull forward the x86_64 pattern.

ref #20993

25776 of 59416 relevant lines covered (43.38%)

1.3 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/python/pants/backend/cue/goals/lint.py
1
# Copyright 2023 Pants project contributors (see CONTRIBUTORS.md).
2
# Licensed under the Apache License, Version 2.0 (see LICENSE).
3

4
from __future__ import annotations
×
5

6
from collections.abc import Iterable
×
7
from typing import Any
×
8

9
from pants.backend.cue import subsystem
×
10
from pants.backend.cue.rules import _run_cue
×
11
from pants.backend.cue.subsystem import Cue
×
12
from pants.backend.cue.target_types import CueFieldSet
×
13
from pants.core.goals.lint import LintResult, LintTargetsRequest
×
14
from pants.core.util_rules.partitions import PartitionerType
×
15
from pants.core.util_rules.source_files import SourceFilesRequest, determine_source_files
×
16
from pants.engine.platform import Platform
×
17
from pants.engine.rules import Rule, collect_rules, rule
×
18
from pants.util.logging import LogLevel
×
19

20

21
class CueLintRequest(LintTargetsRequest):
×
22
    field_set_type = CueFieldSet
×
23
    tool_subsystem = Cue
×
24
    partitioner_type = PartitionerType.DEFAULT_SINGLE_PARTITION
×
25

26

27
@rule(desc="Lint with cue", level=LogLevel.DEBUG)
×
28
async def run_cue_vet(
×
29
    request: CueLintRequest.Batch[CueFieldSet, Any],
30
    cue: Cue,
31
    platform: Platform,
32
) -> LintResult:
33
    sources = await determine_source_files(
×
34
        SourceFilesRequest(sources_fields=[field_set.sources for field_set in request.elements])
35
    )
36
    process_result = await _run_cue("vet", cue=cue, snapshot=sources.snapshot, platform=platform)
×
37
    return LintResult.create(request, process_result)
×
38

39

40
def rules() -> Iterable[Rule]:
×
41
    return (
×
42
        *collect_rules(),
43
        *CueLintRequest.rules(),
44
        *subsystem.rules(),
45
    )
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc