aboutsummaryrefslogtreecommitdiff
path: root/.github/ISSUE_TEMPLATE/bug_report.md
diff options
context:
space:
mode:
Diffstat (limited to '.github/ISSUE_TEMPLATE/bug_report.md')
-rw-r--r--.github/ISSUE_TEMPLATE/bug_report.md14
1 files changed, 8 insertions, 6 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
index 84ac229..37d93ca 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -8,17 +8,19 @@ assignees: ''
---
**Describe the bug**
-A clear and concise description of what the bug is.
-Please provide a stack trace if available.
+Describe the observed behavior, and what you expect to happen instead.
+In case of a crash, please provide the complete stack trace.
**How To Reproduce**
-Please provide a unit test or a minimal code snippet that reproduces the
-problem.
+Please provide a unit test or a minimal reproducible example that shows
+the problem.
**Your environment**
-Please run the following and paste the output.
+Please run the following in the environment where the problem happened and
+paste the output.
```bash
python -c "import platform; print(platform.platform())"
python -c "import sys; print('Python', sys.version)"
-python -c "from pyfakefs.fake_filesystem import __version__; print('pyfakefs', __version__)"
+python -c "from pyfakefs import __version__; print('pyfakefs', __version__)"
+python -c "import pytest; print('pytest', pytest.__version__)"
```