core/.github/PULL_REQUEST_TEMPLATE.md

29 lines
1.2 KiB
Markdown
Raw Normal View History

2016-02-27 22:17:20 +00:00
**Description:**
2016-02-26 21:38:15 +00:00
2016-02-27 22:17:20 +00:00
**Related issue (if applicable):** #
2016-02-28 08:59:28 +00:00
2016-02-27 22:17:20 +00:00
**Example entry for `configuration.yaml` (if applicable):**
```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
2016-02-27 22:17:20 +00:00
**Checklist:**
2016-02-26 21:38:15 +00:00
2016-03-22 15:39:24 +00:00
If code communicates with devices:
- [ ] Local tests with `tox` run successfully. **Your PR cannot be merged unless tests pass**
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]).
- [ ] New 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-03-22 15:39:41 +00:00
- [ ] Local tests with `tox` run successfully. **Your PR cannot be merged unless tests pass**
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
2016-02-27 22:17:20 +00:00
[fork]: http://stackoverflow.com/a/7244456
[squash]: https://github.com/ginatrapani/todo.txt-android/wiki/Squash-All-Commits-Related-to-a-Single-Issue-into-a-Single-Commit
2016-04-12 12:18:18 +00:00
[ex-requir]: https://github.com/home-assistant/home-assistant/blob/dev/homeassistant/components/keyboard.py#L16
[ex-import]: https://github.com/home-assistant/home-assistant/blob/dev/homeassistant/components/keyboard.py#L51
2016-02-26 21:38:15 +00:00