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

UNCOV
4
from pants.backend.shell import dependency_inference, shunit2_test_runner
×
UNCOV
5
from pants.backend.shell.goals import package, tailor, test
×
UNCOV
6
from pants.backend.shell.subsystems import shunit2
×
UNCOV
7
from pants.backend.shell.target_types import (
×
8
    ShellCommandPackageTarget,
9
    ShellCommandRunTarget,
10
    ShellCommandTarget,
11
    ShellCommandTestTarget,
12
    ShellSourcesGeneratorTarget,
13
    ShellSourceTarget,
14
    Shunit2TestsGeneratorTarget,
15
    Shunit2TestTarget,
16
)
UNCOV
17
from pants.backend.shell.target_types import rules as target_types_rules
×
UNCOV
18
from pants.backend.shell.util_rules import shell_command
×
19

20

UNCOV
21
def target_types():
×
UNCOV
22
    return [
×
23
        ShellCommandTarget,
24
        ShellCommandRunTarget,
25
        ShellCommandTestTarget,
26
        ShellCommandPackageTarget,
27
        ShellSourcesGeneratorTarget,
28
        Shunit2TestsGeneratorTarget,
29
        ShellSourceTarget,
30
        Shunit2TestTarget,
31
    ]
32

33

UNCOV
34
def rules():
×
UNCOV
35
    return [
×
36
        *dependency_inference.rules(),
37
        *shell_command.rules(),
38
        *shunit2.rules(),
39
        *shunit2_test_runner.rules(),
40
        *tailor.rules(),
41
        *target_types_rules(),
42
        *test.rules(),
43
        *package.rules(),
44
    ]
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