We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd0fdd8 commit e33494eCopy full SHA for e33494e
1 file changed
.github/workflows/python-test.yml
@@ -3,6 +3,8 @@
3
4
name: Test
5
6
+permissions: read-all
7
+
8
on:
9
push:
10
branches: [ master ]
@@ -27,7 +29,7 @@ jobs:
27
29
- name: Install dependencies
28
30
run: |
31
python -m pip install --upgrade pip
- python -m pip install flake8 pytest mypy
32
+ python -m pip install flake8 pytest pytest-cov mypy
33
- name: Lint with flake8
34
35
# stop the build if there are Python syntax errors or undefined names
@@ -38,3 +40,5 @@ jobs:
38
40
run: mypy pythonosc examples
39
41
- name: Test with pytest
42
run: pytest
43
+ - name: Coverage with pytest-cov
44
+ run: pytest -cov=pythonosc
0 commit comments