apprise/.github/PULL_REQUEST_TEMPLATE.md

46 lines
1.4 KiB
Markdown
Raw Normal View History

2019-10-12 02:44:15 +02:00
## Description:
2020-03-18 17:36:54 +01:00
**Related issue (if applicable):** #<!--apprise issue number goes here-->
2019-10-12 02:44:15 +02:00
<!-- Have anything else to describe? Define it here -->
2019-10-12 02:44:15 +02:00
## New Service Completion Status
<!-- This section is only applicable if you're adding a new service -->
* [ ] apprise/plugins/Notify<!--ServiceName goes here-->.py
* [ ] KEYWORDS
- add new service into this file (alphabetically).
2019-10-12 02:44:15 +02:00
* [ ] README.md
- add entry for new service to table (as a quick reference)
* [ ] packaging/redhat/python-apprise.spec
- add new service into the `%global common_description`
## Checklist
<!-- The following must be completed or your PR can't be merged -->
* [ ] The code change is tested and works locally.
* [ ] There is no commented out code in this PR.
* [ ] No lint errors (use `flake8`)
* [ ] 100% test coverage
2022-05-11 17:09:50 +02:00
## Testing
<!-- If this your code is testable by other users of the program
it would be really helpful to define this here -->
Anyone can help test this source code as follows:
```bash
# Create a virtual environment to work in as follows:
python3 -m venv apprise
# Change into our new directory
cd apprise
# Activate our virtual environment
source bin/activate
# Install the branch
pip install git+https://github.com/caronc/apprise.git@<this.branch-name>
# Test out the changes with the following command:
2022-05-11 17:09:50 +02:00
apprise -t "Test Title" -b "Test Message" \
<apprise url related to ticket>
```