diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index e8089b74..c537aee3 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -2,13 +2,11 @@ **Related issue (if applicable):** # + ## New Service Completion Status * [ ] apprise/plugins/.py @@ -55,18 +55,16 @@ apprise -vv -t "Title" -b "Message content" \ * [ ] packaging/redhat/python-apprise.spec - add new service into the `%global common_description` - -- END OF NEW PLUGIN SECTION - REMOVE ABOVE SECION IF NOT A NEW PLUGIN --> - ## Checklist * [ ] The code change is tested and works locally. * [ ] There is no commented out code in this PR. -* [ ] No lint errors (use `tox -e lint` and even `tox -e format` to autofix what it can) -* [ ] Test coverage added (use `tox -e minimal`) +* [ ] No lint errors (use `tox -e lint`) +* [ ] 100% test coverage (use `tox -e minimal`) ## Testing + 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: @@ -85,8 +83,4 @@ pip install git+https://github.com/caronc/apprise.git@ apprise -t "Test Title" -b "Test Message" \ -# If you have cloned the branch and have tox available to you -# the following can also allow you to test: -tox -e apprise -- -t "Test Title" -b "Test Message" \ - ```