1.0.0 - new methods for pytest session analysis
New methods are provided to analyse pytest session results:
filter_session_items(session, filter=None)
is the filtering method used behind several functions in this package - it can be used independently.pytest_item_matches_filter
is the inner method used to test if a single item matches the filter.get_all_pytest_param_names(session, filter=None, filter_incomplete=False)
lists all unique parameter names used in pytest session items, with optional filtering capabilities. Fixes #12is_pytest_incomplete(item)
,get_pytest_status(item)
,get_pytest_param_names(item)
andget_pytest_params(item)
allow users to analyse a specific item.
See documentation page for details.