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

pantsbuild / pants / 19015773527

02 Nov 2025 05:33PM UTC coverage: 17.872% (-62.4%) from 80.3%
19015773527

Pull #22816

github

web-flow
Merge a12d75757 into 6c024e162
Pull Request #22816: Update Pants internal Python to 3.14

4 of 5 new or added lines in 3 files covered. (80.0%)

28452 existing lines in 683 files now uncovered.

9831 of 55007 relevant lines covered (17.87%)

0.18 hits per line

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

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

UNCOV
4
from __future__ import annotations
×
5

UNCOV
6
from collections.abc import Iterable
×
7

UNCOV
8
from pants.backend.cue import subsystem
×
UNCOV
9
from pants.backend.cue.rules import _run_cue
×
UNCOV
10
from pants.backend.cue.subsystem import Cue
×
UNCOV
11
from pants.backend.cue.target_types import CueFieldSet
×
UNCOV
12
from pants.core.goals.fmt import FmtResult, FmtTargetsRequest
×
UNCOV
13
from pants.core.util_rules.partitions import PartitionerType
×
UNCOV
14
from pants.engine.platform import Platform
×
UNCOV
15
from pants.engine.rules import Rule, collect_rules, rule
×
UNCOV
16
from pants.util.logging import LogLevel
×
17

18

UNCOV
19
class CueFmtRequest(FmtTargetsRequest):
×
UNCOV
20
    field_set_type = CueFieldSet
×
UNCOV
21
    tool_subsystem = Cue  # type: ignore[assignment]
×
UNCOV
22
    partitioner_type = PartitionerType.DEFAULT_SINGLE_PARTITION
×
23

24

UNCOV
25
@rule(desc="Format with cue", level=LogLevel.DEBUG)
×
UNCOV
26
async def run_cue_fmt(request: CueFmtRequest.Batch, cue: Cue, platform: Platform) -> FmtResult:
×
27
    process_result = await _run_cue(
×
28
        "fmt",
29
        cue=cue,
30
        snapshot=request.snapshot,
31
        platform=platform,
32
        output_files=request.snapshot.files,
33
    )
34
    return await FmtResult.create(request, process_result)
×
35

36

UNCOV
37
def rules() -> Iterable[Rule]:
×
UNCOV
38
    return (
×
39
        *collect_rules(),
40
        *CueFmtRequest.rules(),
41
        *subsystem.rules(),
42
    )
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