forked from noirbizarre/flask-restplus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request noirbizarre#697 from a-luna/bug-report-issue-template
Issue template for bugs/defects
- Loading branch information
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
name: Bug Report | ||
about: Tell us how Flask-RESTPlus is broken | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
### ***** **BEFORE LOGGING AN ISSUE** ***** | ||
|
||
- Is this something you can **debug and fix**? Send a pull request! Bug fixes and documentation fixes are welcome. | ||
- Please check if a similar issue already exists or has been closed before. Seriously, nobody here is getting paid. Help us out and take five minutes to make sure you aren't submitting a duplicate. | ||
- Please review the [guidelines for contributing](https://github.com/noirbizarre/flask-restplus/blob/master/CONTRIBUTING.rst) | ||
|
||
### **Code** | ||
|
||
```python | ||
from your_code import your_buggy_implementation | ||
``` | ||
|
||
### **Repro Steps** (if applicable) | ||
1. ... | ||
2. ... | ||
3. Broken! | ||
|
||
### **Expected Behavior** | ||
A description of what you expected to happen. | ||
|
||
### **Actual Behavior** | ||
A description of the unexpected, buggy behavior. | ||
|
||
### **Error Messages/Stack Trace** | ||
If applicable, add the stack trace produced by the error | ||
|
||
### **Environment** | ||
- Python version | ||
- Flask version | ||
- Flask-RESTPlus version | ||
- Other installed Flask extensions | ||
|
||
### **Additional Context** | ||
|
||
This is your last chance to provide any pertinent details, don't let this opportunity pass you by! |