diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-01-06 17:56:38 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-01-06 17:56:38 -0500 |
commit | 21d3b37e290796312750f207442b33afbaab14de (patch) | |
tree | e53caa703c1361a516b3ed2c51ed0a1367eba77e | |
parent | e6471983514f69b1322c1f3e4e8f4de545cc37fe (diff) | |
download | python-coveragepy-git-21d3b37e290796312750f207442b33afbaab14de.tar.gz |
Issue templates
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug_report.md | 24 | ||||
-rw-r--r-- | .github/ISSUE_TEMPLATE/feature_request.md | 20 |
2 files changed, 44 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..d19977ed --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,24 @@ +--- +name: Bug report +about: Report a problem with coverage.py +title: '' +labels: bug +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of the bug. + +**To Reproduce** +How can we reproduce the problem? Please *be specific*. +1. What version of Python are you running? +2. What versions of what packages do you have installed? The output of `pip freeze` is very helpful. +3. What code are you running? Give us a specific commit of a specific repo that we can check out. +4. What commands did you run? + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..c44202ba --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for coverage.py +title: '' +labels: enhancement +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context about the feature request here. |