Skip to content

Commit f106652

Browse files
authored
Add a bug report template and .gitignore (#44)
1 parent db451b8 commit f106652

File tree

2 files changed

+49
-0
lines changed

2 files changed

+49
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "[BUG] - title of the issue"
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
# Describe the bug
11+
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.
12+
13+
# To Reproduce
14+
Steps to reproduce the behavior:
15+
for example:
16+
1. use function XXX
17+
2. insert this argument
18+
3. See error
19+
20+
**IMPORTANT**
21+
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.
22+
23+
# Expected behavior
24+
A clear and concise description of what you expected to happen.
25+
26+
# Error message
27+
If applicable, include the error message displayed in the console: strange type of surface, unexpected exit, python
28+
exception…
29+
30+
# Screenshots
31+
If applicable, add screenshots to help explain your problem.
32+
33+
# Please complete the following information):
34+
- OS: [e.g. Linux or Windows]
35+
- F4Enix version
36+
- Python version
37+
38+
# Additional context
39+
Add any other context about the problem here.

.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.vscode
2+
**/__pycache__
3+
.coverage
4+
htmlcov/*
5+
docs/source/_build/**
6+
docs/build/**
7+
docs/source/_autosummary/*
8+
docs/jupyter_execute
9+
.pytest_cache/**
10+
build/

0 commit comments

Comments
 (0)