Merged
Conversation
So that one can keep track of versions with data generated.
Contributor
There was a problem hiding this comment.
👍 Looks good to me! Reviewed everything up to 62d85c3 in 43 seconds
More details
- Looked at
201lines of code in3files - Skipped
0files when reviewing. - Skipped posting
2drafted comments based on config settings.
1. examples/pytest/test_some_actions.py:3
- Draft comment:
Duplicate import statement for 'some_actions'. Remove this line to clean up the code. - Reason this comment was not posted:
Confidence changes required:50%
The import statement for 'some_actions' is duplicated, which is unnecessary and can be removed to clean up the code.
2. examples/pytest/test_some_actions.py:164
- Draft comment:
Consider addingmodule_results_df["git_latest_tag"] = git_info["latest_tag"]to include the latest tag information in the results. - Reason this comment was not posted:
Confidence changes required:50%
The 'git_info' fixture is used to capture git information, but the 'git_latest_tag' is not being utilized in the 'test_print_results' function. It should be added to the DataFrame for consistency and completeness.
Workflow ID: wflow_PyVC7yaCwLtTMDII
You can customize Ellipsis with 👍 / 👎 feedback, review rules, user-specific overrides, quiet mode, and more.
|
A preview of is uploaded and can be seen here: ✨ https://burr.dagworks.io/pull/490 ✨ Changes may take a few minutes to propagate. Since this is a preview of production, content with |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
So that one can keep track of versions with data generated.
Changes
Adds to pytest example
How I tested this
Runs locally.
Notes
Checklist
Important
Add
git_infofixture to capture git details and integrate it into test result logging in pytest examples.git_infofixture inconftest.pyto capture git commit, branch, and latest tag.test_print_resultsintest_some_actions.pyto include git information in the results CSV.git_infofixture intest_print_resultsto log git commit and branch.README.mdto include examples and explanations of using pytest fixtures, including the newgit_infofixture.This description was created by
for 62d85c3. It will automatically update as commits are pushed.