jrnl/.github/PULL_REQUEST_TEMPLATE.md
MinchinWeb 13a49c7c45 Improve GitHub PR Template
# Conflicts:
#	.github/PULL_REQUEST_TEMPLATE.md
2020-04-26 21:34:43 -06:00

1.1 KiB

Checklist

  • The code change is tested and works locally.
  • Tests pass. Your PR cannot be merged unless tests pass. -- behave
  • The code passes linting via black (consistent code styling). -- black --check . --verbose --diff
  • The code passes linting via pyflakes (logically errors and unused imports). -- pyflakes .
  • There is no commented out code in this PR.
  • Have you followed the guidelines in our Contributing document?
  • Have you checked to ensure there aren't other open Pull Requests for the same update/change?
  • Have you added an explanation of what your changes do and why you'd like us to include them?
  • Have you written new tests for your core changes, as applicable?