Skip to content

Commit

Permalink
adding the missing properties
Browse files Browse the repository at this point in the history
  • Loading branch information
omkarkhatavkar committed Jan 4, 2024
1 parent 963700e commit 8429a1f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pytest_plugins/metadata_markers.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ def pytest_collection_modifyitems(items, config):
markers_prop_data = []
exclude_markers = ['parametrize', 'skipif', 'usefixtures', 'skip_if_not_set']
for marker in item.iter_markers():
item.user_properties.append((marker.name, next(iter(marker.args), None)))
prop = marker.name
if prop in exclude_markers:
continue
Expand Down

0 comments on commit 8429a1f

Please sign in to comment.