1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
name: Bug Report
description: Create a report to help us fix broken features
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to open this issue to help improve PyVista!
- type: textarea
id: what-happened
attributes:
label: Describe the bug, what's wrong, and what you expected.
description: |
Provide a clear and concise description of what the bug is.
Provide a clear and concise description of what you expected to happen.
placeholder: Tell us what you see!
value: "I found a bug!"
validations:
required: true
- type: textarea
id: reproduce
attributes:
label: Steps to reproduce the bug.
description: |
Please provide a list of steps to reproduce the bug.
Please include a code snippet to reproduce the bug in the text box below.
placeholder: Provide some code for us to reproduce the bug!
value: "```python\nInsert code here\n```"
validations:
required: true
- type: textarea
id: system-information
attributes:
label: System Information
placeholder: The log will automatically be formatted! No need to type backticks.
description: |
Please run the following code wherever you are experiencing the bug, and paste the output below.
This report helps us track down bugs and will be critical to addressing your bug.
```python
# Get system info
import pyvista as pv
print(pv.Report())
```
render: shell
validations:
required: true
- type: textarea
id: screenshots
attributes:
label: Screenshots
description: If applicable, please add screenshots to the text box below
|