-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add bug report and .gitignore to main (#45)
- Loading branch information
1 parent
9e5a708
commit c426387
Showing
2 changed files
with
49 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,39 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: "[BUG] - title of the issue" | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
# Describe the bug | ||
A clear and concise description of what the bug is. Remember to try to reproduce your bug with the latest version of the _dev_ branch, the problem may already have been solved. | ||
|
||
# To Reproduce | ||
Steps to reproduce the behavior: | ||
for example: | ||
1. use function XXX | ||
2. insert this argument | ||
3. See error | ||
|
||
**IMPORTANT** | ||
If you failed to convert a specific geometry, please isolate the geometry features producing the bug (ideally a single body), save it as a STEP file and attach it to this issue. Include also all the files used in the conversion as well as the GEOUNED version used. | ||
|
||
# Expected behavior | ||
A clear and concise description of what you expected to happen. | ||
|
||
# Error message | ||
If applicable, include the error message displayed in the console: strange type of surface, unexpected exit, python | ||
exception… | ||
|
||
# Screenshots | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
# Please complete the following information): | ||
- OS: [e.g. Linux or Windows] | ||
- GEOUNED version | ||
- Python version | ||
|
||
# Additional context | ||
Add any other context about the problem here. |
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,10 @@ | ||
.vscode | ||
**/__pycache__ | ||
.coverage | ||
htmlcov/* | ||
docs/source/_build/** | ||
docs/build/** | ||
docs/source/_autosummary/* | ||
docs/jupyter_execute | ||
.pytest_cache/** | ||
build/ |