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

pantsbuild / pants / 26079765061

19 May 2026 06:12AM UTC coverage: 63.597% (-29.2%) from 92.784%
26079765061

push

github

web-flow
Switch the pants repo to use uv lockfiles (#23293)

Includes in-repo lockfiles and the ones we
embed as default lockfiles for Python tools.

Does not include a handful of lockfiles used
in tests. Those will be done in a followup.

2 of 2 new or added lines in 1 file covered. (100.0%)

18165 existing lines in 554 files now uncovered.

42384 of 66645 relevant lines covered (63.6%)

1.46 hits per line

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

0.0
/src/python/pants/bsp/util_rules/queries.py
1
# Copyright 2024 Pants project contributors (see CONTRIBUTORS.md).
2
# Licensed under the Apache License, Version 2.0 (see LICENSE).
UNCOV
3
from __future__ import annotations
×
4

UNCOV
5
from collections.abc import Iterable
×
6

UNCOV
7
from pants.bsp.protocol import BSPHandlerMapping
×
UNCOV
8
from pants.engine.environment import EnvironmentName
×
UNCOV
9
from pants.engine.fs import Workspace
×
UNCOV
10
from pants.engine.rules import QueryRule, Rule
×
UNCOV
11
from pants.engine.unions import UnionRule
×
12

13

14
# Compute QueryRule's for each handler request/response pair.
15
# Note: These are necessary because the BSP support is an auxiliary goal that makes
16
# synchronous requests into the engine.
UNCOV
17
def compute_handler_query_rules(
×
18
    rules: Iterable[Rule | UnionRule | QueryRule],
19
) -> tuple[QueryRule, ...]:
UNCOV
20
    queries: list[QueryRule] = []
×
21

UNCOV
22
    for rule in rules:
×
UNCOV
23
        if isinstance(rule, UnionRule):
×
UNCOV
24
            if rule.union_base == BSPHandlerMapping:
×
UNCOV
25
                impl = rule.union_member
×
UNCOV
26
                assert issubclass(impl, BSPHandlerMapping)
×
UNCOV
27
                queries.append(
×
28
                    QueryRule(impl.response_type, (impl.request_type, Workspace, EnvironmentName))
29
                )
30

UNCOV
31
    return tuple(queries)
×
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