-
Notifications
You must be signed in to change notification settings - Fork 5
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
Add execution level tagging #44
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,9 +29,18 @@ def pytest_runtest_logstart(self, nodeid, location): | |
) | ||
self.in_flight[nodeid] = test_data | ||
|
||
def pytest_runtest_teardown(self, item): | ||
"""pytest_runtest_hook hook callback to collect execution_tag""" | ||
test_data = self.in_flight.get(item.nodeid) | ||
|
||
if test_data: | ||
tags = item.iter_markers("execution_tag") | ||
for tag in tags: | ||
test_data.tag_execution(tag.args[0], tag.args[1]) | ||
|
||
def pytest_runtest_logreport(self, report): | ||
"""pytest_runtest_logreport hook callback""" | ||
if report.when != 'call': | ||
if report.when != 'teardown': | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Defer the execution colection after the test There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't quite understand this bit. I thought logreport is always after the teardown hook? What does this if condition do? |
||
return | ||
|
||
nodeid = report.nodeid | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not a blocker, I wonder what will happen if user put non-string key value here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah! I wasn't aware that tag only support string. I'll handle non-string scenario.