-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Getting an uninitialized error when using pytest_deselected hook #13149
Comments
Please use keyword arguments |
dang. that was it. However, pytest is still running everything, not just the ones that I have marked. I've confirmed the ones that I want are not in the list that I'm sending to the hook. |
As described in the docs, you need to change the def pytest_collection_modifyitems(session, config, items):
req_tags_str = config.getoption("--requirements")
if req_tags_str:
req_tags = [i.strip() for i in req_tags_str.split(",")]
run = filter(
lambda item: _is_wanted_test(item, req_tags),
items
)
do_not_run = filter(
lambda item: not _is_wanted_test(item, req_tags),
items
)
items[:] = run
config.hook.pytest_deselected(items=do_not_run) Or: def pytest_collection_modifyitems(session, config, items):
req_tags_str = config.getoption("--requirements")
if req_tags_str:
req_tags = [i.strip() for i in req_tags_str.split(",")]
run = [i for i in items if _is_wanted_test(item)]
do_not_run = [i for i in items if not _is_wanted_test(item)]
items[:] = run
config.hook.pytest_deselected(items=do_not_run) |
For what it's worth, exactly the docs you linked to claim:
which evidently doesn't work, so that seems like a docs bug to me. |
Indeed, #13152. 👍 |
Ref #13149 (cherry picked from commit 4a6a512) Co-authored-by: Bruno Oliveira <[email protected]>
Thanks everyone. For future reference, this is the final code that worked for me: def pytest_configure(config):
config.addinivalue_line(
"markers",
"{requirement}(jira_issue): The jira issue that is being tested"
)
@curry
def _is_wanted_test(run_tags, marker, item) -> bool:
maybe_wanted = list(item.iter_markers(name=marker))
if maybe_wanted:
for x in maybe_wanted:
if x.args[0] in run_tags:
return True
return False
def _sort_tests(items, checker: callable):
discard = []
keep = []
for item in items:
if checker(item):
keep.append(item)
else:
discard.append(item)
return keep, discard
def pytest_collection_modifyitems(session, config, items):
req_tags_str = config.getoption("--requirements")
if req_tags_str:
req_tags = [i.strip() for i in req_tags_str.split(",")]
keep, discard = _sort_tests(
items, _is_wanted_test(req_tags, "requirement")
)
items[:] = keep
config.hook.pytest_deselected(items=discard) |
When using the included hook. I'm getting the following error:
I'm not sure if I was supposed to initialize something somewhere. I didn't see anything in the docs about it.
Error produced from the following code:
pytest 8.3.4
os Fedora 41
pip list:
The text was updated successfully, but these errors were encountered: