We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5abea3 commit 410b29bCopy full SHA for 410b29b
pytest_reportportal/service.py
@@ -251,7 +251,9 @@ def start_pytest_item(self, test_item=None):
251
'name': self._get_item_name(test_item),
252
'description': self._get_item_description(test_item),
253
'start_time': timestamp(),
254
- 'item_type': 'TEST',
+ # Item type should be sent as "STEP" until we upgrade to RPv6.
255
+ # Details at: https://github.com/reportportal/agent-Python-RobotFramework/issues/56
256
+ 'item_type': 'STEP',
257
'parent_item_id': self.parent_item_id
258
}
259
if self.rp_supports_parameters:
setup.py
@@ -8,7 +8,7 @@ def read_file(fname):
8
return f.read()
9
10
11
-version = '5.0.2'
+version = '5.0.3'
12
13
14
requirements = [
0 commit comments