core/.github/PULL_REQUEST_TEMPLATE.md

32 lines
1.5 KiB
Markdown
Raw Normal View History

## Description:
2016-02-26 21:38:15 +00:00
2016-10-15 11:46:45 +00:00
**Related issue (if applicable):** fixes #<home-assistant issue number goes here>
2016-02-28 08:59:28 +00:00
**Pull request in [home-assistant.io](https://github.com/home-assistant/home-assistant.io) with documentation (if applicable):** home-assistant/home-assistant.io#<home-assistant.io PR number goes here>
## Example entry for `configuration.yaml` (if applicable):
2016-02-27 22:17:20 +00:00
```yaml
2016-02-26 21:38:15 +00:00
2016-02-27 22:17:20 +00:00
```
2016-02-26 21:38:15 +00:00
## Checklist:
- [ ] The code change is tested and works locally.
2018-03-09 20:27:39 +00:00
- [ ] Local tests pass with `tox`. **Your PR cannot be merged unless tests pass**
- [ ] There is no commented out code in this PR.
2016-02-26 21:38:15 +00:00
If user exposed functionality or configuration variables are added/changed:
- [ ] Documentation added/updated in [home-assistant.io](https://github.com/home-assistant/home-assistant.io)
2016-10-05 14:28:38 +00:00
If the code communicates with devices, web services, or third-party tools:
2016-02-28 08:59:28 +00:00
- [ ] New dependencies have been added to the `REQUIREMENTS` variable ([example][ex-requir]).
- [ ] New dependencies are only imported inside functions that use them ([example][ex-import]).
2018-06-01 21:33:04 +00:00
- [ ] New or updated dependencies have been added to `requirements_all.txt` by running `script/gen_requirements_all.py`.
2016-02-27 22:17:20 +00:00
- [ ] New files were added to `.coveragerc`.
2016-03-22 15:39:24 +00:00
If the code does not interact with devices:
2016-02-28 08:59:28 +00:00
- [ ] Tests have been added to verify that the new code works.
2016-02-26 21:38:15 +00:00
[ex-requir]: https://github.com/home-assistant/home-assistant/blob/dev/homeassistant/components/keyboard/__init__.py#L14
[ex-import]: https://github.com/home-assistant/home-assistant/blob/dev/homeassistant/components/keyboard/__init__.py#L23