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

testit-tms / adapters-python / 21937415766

12 Feb 2026 07:26AM UTC coverage: 37.16% (-4.1%) from 41.236%
21937415766

Pull #234

github

web-flow
Merge e908d8a92 into 2fcd27f6a
Pull Request #234: feat: TMS-37545: replace labels with tags when collecting autotest me…

17 of 73 new or added lines in 11 files covered. (23.29%)

2 existing lines in 2 files now uncovered.

1337 of 3598 relevant lines covered (37.16%)

0.74 hits per line

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

0.0
/testit-adapter-pytest/src/testit_adapter_pytest/models/executable_test.py
1
from attr import attrs, attrib
×
2
from attr import Factory
×
3

4

5
@attrs
×
6
class ExecutableTest:
×
7
    external_id = attrib()
×
8
    name = attrib()
×
9
    steps = attrib(default=Factory(list))
×
10
    step_results = attrib(default=Factory(list))
×
11
    setup_steps = attrib(default=Factory(list))
×
12
    setup_step_results = attrib(default=Factory(list))
×
13
    teardown_steps = attrib(default=Factory(list))
×
14
    teardown_step_results = attrib(default=Factory(list))
×
15
    result_links = attrib(default=Factory(list))
×
16
    duration = attrib(default=None)
×
17
    outcome = attrib(default=None)
×
18
    failure_reason_names = attrib(default=Factory(list))
×
19
    traces = attrib(default=None)
×
20
    attachments = attrib(default=Factory(list))
×
21
    parameters = attrib(default=Factory(dict))
×
22
    properties = attrib(default=Factory(dict))
×
23
    namespace = attrib(default=None)
×
24
    classname = attrib(default=None)
×
25
    title = attrib(default=None)
×
26
    description = attrib(default=None)
×
27
    links = attrib(default=Factory(list))
×
NEW
28
    tags = attrib(default=Factory(list))
×
29
    work_item_ids = attrib(default=Factory(list))
×
30
    message = attrib(default=None)
×
31
    node_id = attrib(default=None)
×
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