-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add issue template for test cases
- Loading branch information
1 parent
55c7109
commit ad30c25
Showing
3 changed files
with
44 additions
and
15 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 |
---|---|---|
@@ -1,27 +1,23 @@ | ||
--- | ||
name: Bug report | ||
name: Bug Report | ||
about: Create a report to help us improve | ||
title: '' | ||
title: '[Bug] - <Short Description>' | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
<!-- A clear and concise description of what the bug is. --> | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior. | ||
<!-- Steps to reproduce the behavior. --> | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
<!-- A clear and concise description of what you expected to happen. --> | ||
|
||
**Server Version** | ||
output of | ||
``` | ||
./versitygw -version | ||
uname -a | ||
``` | ||
<!-- output of: './versitygw -version && uname -a' --> | ||
|
||
**Additional context** | ||
Describe s3 client and version if applicable. | ||
<!-- Describe s3 client and version if applicable. |
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
--- | ||
name: Feature request | ||
name: Feature Request | ||
about: Suggest an idea for this project | ||
title: '' | ||
title: '[Feature] - <Short Description>' | ||
labels: enhancement | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
<!-- A clear and concise description of what you want to happen. --> | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. | ||
<!-- Add any other context or screenshots about the feature request 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,33 @@ | ||
--- | ||
name: Test Case Request | ||
about: Request new test cases or additional test coverage | ||
title: '[Test Case] - <Short Description>' | ||
labels: 'testcase' | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Description | ||
<!-- Please provide a detailed description of the test case or test coverage request. --> | ||
|
||
## Purpose | ||
<!-- Explain why this test case is important and what it aims to achieve. --> | ||
|
||
## Scope | ||
<!-- Describe the scope of the test case, including any specific functionalities, features, or modules that should be tested. --> | ||
|
||
## Acceptance Criteria | ||
<!-- List the criteria that must be met for the test case to be considered complete. --> | ||
|
||
1. | ||
2. | ||
3. | ||
|
||
## Additional Context | ||
<!-- Add any other context or screenshots about the feature request here. --> | ||
|
||
## Resources | ||
<!-- Provide any resources, documentation, or links that could help in writing the test case. --> | ||
|
||
|
||
**Thank you for contributing to our project!** |