• 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/codegen/protobuf/python/additional_fields.py
1
# Copyright 2020 Pants project contributors (see CONTRIBUTORS.md).
2
# Licensed under the Apache License, Version 2.0 (see LICENSE).
3

UNCOV
4
from pants.backend.codegen.protobuf.target_types import (
×
5
    ProtobufSourcesGeneratorTarget,
6
    ProtobufSourceTarget,
7
)
UNCOV
8
from pants.backend.python.target_types import InterpreterConstraintsField, PythonResolveField
×
UNCOV
9
from pants.engine.target import StringField
×
UNCOV
10
from pants.util.strutil import help_text
×
11

12

UNCOV
13
class ProtobufPythonInterpreterConstraintsField(InterpreterConstraintsField):
×
UNCOV
14
    alias = "python_interpreter_constraints"
×
15

16

UNCOV
17
class ProtobufPythonResolveField(PythonResolveField):
×
UNCOV
18
    alias = "python_resolve"
×
19

20

UNCOV
21
class PythonSourceRootField(StringField):
×
UNCOV
22
    alias = "python_source_root"
×
UNCOV
23
    help = help_text(
×
24
        """
25
        The source root to generate Python sources under.
26

27
        If unspecified, the source root the `protobuf_sources` is under will be used.
28
        """
29
    )
30

31

UNCOV
32
def rules():
×
UNCOV
33
    return [
×
34
        ProtobufSourceTarget.register_plugin_field(ProtobufPythonInterpreterConstraintsField),
35
        ProtobufSourcesGeneratorTarget.register_plugin_field(
36
            ProtobufPythonInterpreterConstraintsField,
37
            as_moved_field=True,
38
        ),
39
        ProtobufSourceTarget.register_plugin_field(ProtobufPythonResolveField),
40
        ProtobufSourcesGeneratorTarget.register_plugin_field(
41
            ProtobufPythonResolveField, as_moved_field=True
42
        ),
43
        ProtobufSourceTarget.register_plugin_field(PythonSourceRootField),
44
        ProtobufSourcesGeneratorTarget.register_plugin_field(
45
            PythonSourceRootField, as_moved_field=True
46
        ),
47
    ]
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

© 2025 Coveralls, Inc