File tree Expand file tree Collapse file tree 5 files changed +116
-1
lines changed Expand file tree Collapse file tree 5 files changed +116
-1
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ name : Bug report
3+ about : Create a report to help us improve
4+ title : ' '
5+ labels : ' '
6+ assignees : ' '
7+
8+ ---
9+
10+ ---
11+ name: Bug report
12+ about: Create a report to help us improve
13+ title: ''
14+ labels: ''
15+ assignees: ''
16+
17+ ---
18+
19+ <!-- - Provide a general summary of the issue in the Title above -->
20+
21+ ## Expected Behavior
22+ <!-- - If you're describing a bug, tell us what should happen -->
23+ <!-- - If you're suggesting a change/improvement, tell us how it should work -->
24+
25+ ## Current Behavior
26+ <!-- - If describing a bug, tell us what happens instead of the expected behavior -->
27+ <!-- - If suggesting a change/improvement, explain the difference from current behavior -->
28+
29+ ## Possible Solution
30+ <!-- - Not obligatory, but suggest a fix/reason for the bug, -->
31+ <!-- - or ideas how to implement the addition or change -->
32+
33+ ## Steps to Reproduce (for bugs)
34+ <!-- - Provide a link to a live example, or an unambiguous set of steps to -->
35+ <!-- - reproduce this bug. Include code to reproduce, if relevant -->
36+ 1 .
37+ 2 .
38+ 3 .
39+ 4 .
40+
41+ ## Context
42+ <!-- - How has this issue affected you? What are you trying to accomplish? -->
43+ <!-- - Providing context helps us come up with a solution that is most useful in the real world -->
44+
45+ ## Your Environment
46+ <!-- - Include as many relevant details about the environment you experienced the bug in -->
47+ * Version used:
48+ * Environment name and version (e.g. language and server version):
49+ * Operating System and version:
Original file line number Diff line number Diff line change 1+ ---
2+ name : Feature request
3+ about : Suggest an idea for this project
4+ title : ' '
5+ labels : ' '
6+ assignees : ' '
7+
8+ ---
9+
10+ ** Is your feature request related to a problem? Please describe.**
11+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [ ...]
12+
13+ ** Describe the solution you'd like**
14+ A clear and concise description of what you want to happen.
15+
16+ ** Describe alternatives you've considered**
17+ A clear and concise description of any alternative solutions or features you've considered.
18+
19+ ** Additional context**
20+ Add any other context or screenshots about the feature request here.
Original file line number Diff line number Diff line change 1+ ---
2+ name : Something else
3+ about : Custom template
4+ title : ' '
5+ labels : ' '
6+ assignees : ' '
7+
8+ ---
9+
10+ Tell us what's up!
Original file line number Diff line number Diff line change 1111 os : ["ubuntu-latest", "macos-latest"]
1212
1313 steps :
14- - uses : actions/setup-python@v3
14+ - uses : actions/setup-python@v4
1515 with :
1616 python-version : ${{ matrix.python }}
1717 - name : Clone repo
Original file line number Diff line number Diff line change 1+ name : Mutation Test
2+ on : workflow_dispatch
3+
4+ jobs :
5+ mutation :
6+ name : run mutation test
7+ runs-on : ubuntu-latest
8+ strategy :
9+ fail-fast : true
10+ matrix :
11+ python-version : ["3.10"]
12+
13+ continue-on-error : true
14+
15+ steps :
16+ - uses : actions/checkout@v3
17+ - name : Set up Python ${{ matrix.python-version }}
18+ uses : actions/setup-python@v4
19+ with :
20+ python-version : ${{ matrix.python-version }}
21+ - name : Install dependencies
22+ run : |
23+ python -m pip install --upgrade pip
24+ if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
25+ python -m pip install mutmut
26+ - name : Run mutation test
27+ run : |
28+ mutmut run --no-progress || \
29+ if [ $? -eq 1 ]; then exit 1; fi
30+ - name : Save HTML output
31+ run : |
32+ mutmut html
33+ - uses : actions/upload-artifact@v3
34+ with :
35+ name : mutation-test-report
36+ path : html/
You can’t perform that action at this time.
0 commit comments