Skip to content

Commit b02fb23

Browse files
committed
Merge branch 'main' into video-beta
2 parents 691ad34 + 2c97ff8 commit b02fb23

File tree

5 files changed

+116
-1
lines changed

5 files changed

+116
-1
lines changed
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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:
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Something else
3+
about: Custom template
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
Tell us what's up!

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
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
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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/

0 commit comments

Comments
 (0)