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 c1f1569 commit 446224aCopy full SHA for 446224a
pytest_reportportal/service.py
@@ -108,11 +108,8 @@ def start_pytest_item(self, test_item=None):
108
self.RP.start_test_item(**start_rq)
109
110
def _get_tags(self, item):
111
- # try to extract names of @pytest.mark.* decorators used for test item
+ # Try to extract names of @pytest.mark.* decorators used for test item
112
# and exclude those which present in rp_ignore_tags parameter
113
- mark_plugin = item.config.pluginmanager.getplugin('mark')
114
- if not mark_plugin:
115
- return []
116
return [k for k in item.keywords if item.get_marker(k) is not None
117
and k not in self.ignored_tags]
118
0 commit comments