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

testit-tms / adapters-python / 17790047561

17 Sep 2025 07:24AM UTC coverage: 43.237% (-0.2%) from 43.443%
17790047561

Pull #202

github

web-flow
Merge a14ece727 into b59427724
Pull Request #202: fix: TMS-35114: add threads for creating and updating autotests with …

61 of 177 new or added lines in 5 files covered. (34.46%)

117 existing lines in 3 files now uncovered.

1285 of 2972 relevant lines covered (43.24%)

0.87 hits per line

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

55.56
/testit-python-commons/src/testit_python_commons/client/models/threads_for_create_and_result.py
1
import typing
2✔
2

3
from testit_api_client.models import AutoTestPostModel, AutoTestResultsForTestRunModel
2✔
4

5

6
class ThreadForCreateAndResult:
2✔
7
    def __init__(
2✔
8
            self,
9
            thread_for_create: typing.Dict[str, AutoTestPostModel],
10
            thread_results_for_created_autotests: typing.List[AutoTestResultsForTestRunModel]
11
    ):
NEW
12
        self.__thread_for_create = thread_for_create
×
NEW
13
        self.__thread_results_for_created_autotests = thread_results_for_created_autotests
×
14

15
    def get_thread_for_create(self) -> typing.Dict[str, AutoTestPostModel]:
2✔
NEW
16
        return self.__thread_for_create
×
17

18
    def get_thread_results_for_created_autotests(self) -> typing.List[AutoTestResultsForTestRunModel]:
2✔
NEW
19
        return self.__thread_results_for_created_autotests
×
20

21

22
class ThreadsForCreateAndResult:
2✔
23
    def __init__(
2✔
24
            self,
25
            threads_for_create: typing.List[typing.Dict[str, AutoTestPostModel]],
26
            threads_results_for_created_autotests: typing.List[typing.List[AutoTestResultsForTestRunModel]]
27
    ):
NEW
28
        self.__threads_for_create = threads_for_create
×
NEW
29
        self.__threads_results_for_created_autotests = threads_results_for_created_autotests
×
30

31
    def get_threads_for_create(self) -> typing.List[typing.Dict[str, AutoTestPostModel]]:
2✔
NEW
32
        return self.__threads_for_create
×
33

34
    def get_threads_results_for_created_autotests(self) -> typing.List[typing.List[AutoTestResultsForTestRunModel]]:
2✔
NEW
35
        return self.__threads_results_for_created_autotests
×
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