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

pantsbuild / pants / 20328535594

18 Dec 2025 06:46AM UTC coverage: 57.969% (-22.3%) from 80.295%
20328535594

Pull #22954

github

web-flow
Merge ccc9c5409 into 407284c67
Pull Request #22954: free up disk space in runner image

39083 of 67421 relevant lines covered (57.97%)

0.91 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

4
from __future__ import annotations
×
5

6
from collections.abc import Iterable
×
7

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

18

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

24

25
@rule(desc="Format with cue", level=LogLevel.DEBUG)
×
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

37
def rules() -> Iterable[Rule]:
×
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