Skip to content

Commit

Permalink
update templates
Browse files Browse the repository at this point in the history
  • Loading branch information
woodthom2 committed Nov 27, 2024
1 parent e38ef7d commit 71db4d0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ Provide details regarding the operating system, toolchain, and environment.
2.
3.

## Expected Behavior
## Expected Behaviour

A description of the expected behavior.
A description of the expected behaviour.
10 changes: 7 additions & 3 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Description

Please include a summary of the change and which issue is fixed. Please also include relevant context. List any dependencies that are required for this change.
Please include a summary of the change and which issue is fixed. Please also include relevant context. List any dependencies that are required for this change. Ideally we avoid introducing any new third party dependencies in `requirements.txt` and `pyproject.toml` unless absolutely necessary, because this makes the project more susceptible to breaking whenever a third party library is updated.

#### Fixes # (issue)

Expand All @@ -20,6 +20,8 @@ Please describe the tests that you ran to verify your changes. Provide instructi
- [ ] Test A
- [ ] Test B

Since the Harmony Python package is used by the Harmony API (which is itself used by the R library and the web app), we need to avoid making any changes that break the Harmony API. Please also run the Harmony API unit tests and check that the API still runs with your changes to the Python package: https://github.com/harmonydata/harmonyapi

#### Test Configuration

* Library version:
Expand All @@ -28,12 +30,14 @@ Please describe the tests that you ran to verify your changes. Provide instructi

## Checklist

- [ ] My code follows the style guidelines of this project
- [ ] My code follows the style guidelines of this project. I have applied a Linter (recommended: Pycharm's code formatter) to make my whitespace consistent with the rest of the project.
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings
- [ ] 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
- [ ] Any dependent changes have been merged and published in downstream modules
- [ ] I have checked my code and corrected any misspellings
- [ ] I have checked my code and corrected any misspellings
- [ ] The Harmony API is not broken by my change to the Harmony Python library
- [ ] If I introduced a new feature, I documented it (e.g. making a script example in the [script examples repository](https://github.com/harmonydata/harmony_examples) so that people will know how to use it.

0 comments on commit 71db4d0

Please sign in to comment.