qase-python-commons 3.4.3__py3-none-any.whl → 3.4.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of qase-python-commons might be problematic. Click here for more details.

@@ -111,10 +111,16 @@ class ApiV2Client(ApiV1Client):
111
111
 
112
112
  try:
113
113
  prepared_step = {'execution': {}, 'data': {}, 'steps': []}
114
- prepared_step['execution']['status'] = ResultStepStatus(step.execution.status)
115
- prepared_step['execution']['duration'] = step.execution.duration
116
- prepared_step['execution']['start_time'] = step.execution.start_time
117
- prepared_step['execution']['end_time'] = step.execution.end_time
114
+ if step.execution.status == 'untested':
115
+ prepared_step['execution']['status'] = ResultStepStatus('skipped')
116
+ prepared_step['execution']['duration'] = 0
117
+ prepared_step['execution']['start_time'] = None
118
+ prepared_step['execution']['end_time'] = None
119
+ else:
120
+ prepared_step['execution']['status'] = ResultStepStatus(step.execution.status)
121
+ prepared_step['execution']['duration'] = step.execution.duration
122
+ prepared_step['execution']['start_time'] = step.execution.start_time
123
+ prepared_step['execution']['end_time'] = step.execution.end_time
118
124
 
119
125
  if step.step_type == StepType.TEXT:
120
126
  prepared_step['data']['action'] = step.data.action
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: qase-python-commons
3
- Version: 3.4.3
3
+ Version: 3.4.4
4
4
  Summary: A library for Qase TestOps and Qase Report
5
5
  Author-email: Qase Team <support@qase.io>
6
6
  Project-URL: Homepage, https://github.com/qase-tms/qase-python/tree/main/qase-python-commons
@@ -4,7 +4,7 @@ qase/commons/loader.py,sha256=-MMY4HgSI6q1xq3NaJoq_w4liM73qdFKjYLVCT1E7Pc,1064
4
4
  qase/commons/logger.py,sha256=KEQr8G0eFZxlI3LJIaaNWOKD8o3NhKsZD06swXFn3FI,1313
5
5
  qase/commons/utils.py,sha256=OOr6kQ5hPZEyHXwbwiTOTkonRxmmtkyZPPGqXQKp5vY,2799
6
6
  qase/commons/client/api_v1_client.py,sha256=_dbtl0sesWEfNPMHAMH43zjn4TTKa12jy7BrObkSPEM,6168
7
- qase/commons/client/api_v2_client.py,sha256=wJfPrh_mp1kANyzBotzeOgNQ2VV5oKVMGY6yHpysGbU,8556
7
+ qase/commons/client/api_v2_client.py,sha256=hAEi2QfSzpc4D-1gDtP3sVc-DsY2zMKyDPFqnazTnBg,8910
8
8
  qase/commons/client/base_api_client.py,sha256=qiK93rXXeLOmp6e3cgsLA4lmrV_rCL1BIi_xUeqFrDE,2613
9
9
  qase/commons/exceptions/reporter.py,sha256=dP-Mwcq8HKBOjgu3YqhyULDmDGU09BmT6Fh9HjICaUc,45
10
10
  qase/commons/models/__init__.py,sha256=FTt5dYASBX4r6-tQi-_JAUVx4uvJs9GTxROdAZEV6Jo,272
@@ -35,7 +35,7 @@ qase/commons/reporters/testops.py,sha256=QEcpJhRqXTn4H_EcTt6vG_jqRgw6DGmgS2ZmysZ
35
35
  qase/commons/util/__init__.py,sha256=0sRRfrMOIPCHpk9tXM94Pj10qrk18B61qEcbLpRjw_I,74
36
36
  qase/commons/util/host_data.py,sha256=n8o5PDs8kELCZZ5GR7Jug6LsgZHWJudU7iRmZHRdrlw,5264
37
37
  qase/commons/validators/base.py,sha256=wwSn-4YiuXtfGMGnSKgo9Vm5hAKevVmmfd2Ro6Q7MYQ,173
38
- qase_python_commons-3.4.3.dist-info/METADATA,sha256=ixMdFFFyPvat0CIP7u7tfFUsK9mdVrb6cWVJOdt-L0A,1857
39
- qase_python_commons-3.4.3.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
40
- qase_python_commons-3.4.3.dist-info/top_level.txt,sha256=Mn5aFk7H7Uia4s1NRDsvebu8vCrFy9nOuRIBfkIY5kQ,5
41
- qase_python_commons-3.4.3.dist-info/RECORD,,
38
+ qase_python_commons-3.4.4.dist-info/METADATA,sha256=bHkCm0QKW4F7NJA5lL-WqBuiPS_OTqx2uIWxGj43xi8,1857
39
+ qase_python_commons-3.4.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
40
+ qase_python_commons-3.4.4.dist-info/top_level.txt,sha256=Mn5aFk7H7Uia4s1NRDsvebu8vCrFy9nOuRIBfkIY5kQ,5
41
+ qase_python_commons-3.4.4.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.8.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5