Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Description

Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context.
Please include a summary of the change and include relevant motivation and context. Mention any related issues, if this fixes an issue, include the text "Fixes: #..." with the appropriate issue number(s).


Fixes #


# Type of change

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] This change requires a documentation update

# How Has This Been Tested?

Please describe the tests that you ran to verify your changes.

- [ ] Test A
- [ ] Test B
Comment on lines +15 to +20
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# How Has This Been Tested?
Please describe the tests that you ran to verify your changes.
- [ ] Test A
- [ ] Test B

For this project, I think the test suite should cover things. Tests should be added if needed, but that is covered by the checklist.


# Checklist

_Please check all that apply. You can mark items as N/A if they don't apply to your change._

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have commented my code in hard-to-understand areas, and provided or updated docstrings as needed

- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- [ ] My changes generate no new warnings

We'll have to add a bot which indicates any new warnings, seems more reliable than self-reporting. We'll do this separately.

- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] New and existing unit tests pass locally with my changes