File tree 3 files changed +8
-1
lines changed
3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 10
10
permissions :
11
11
id-token : write
12
12
contents : write
13
+ pull-requests : write
13
14
jobs :
14
15
test :
15
16
strategy :
34
35
- run : make lint
35
36
- run : python setup.py --version
36
37
- run : make test-${{ matrix.python-version }}
38
+ - if : matrix.python-version == '3.8'
39
+ uses : orgoro/coverage@v3
40
+ with :
41
+ coverageFile : coverage.xml
42
+ token : ${{ secrets.GITHUB_TOKEN }}
37
43
prerelease-test :
38
44
runs-on : ubuntu-latest
39
45
continue-on-error : true
Original file line number Diff line number Diff line change 25
25
htmlcov
26
26
test-home /
27
27
venv
28
+ coverage.xml
Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ set -o errexit
3
3
set -o pipefail
4
4
set -o xtrace
5
5
6
- : " ${PYTEST_ARGS:= -vv --cov=rsconnect --cov-report=term --cov-report=html} "
6
+ : " ${PYTEST_ARGS:= -vv --cov=rsconnect --cov-report=term --cov-report=html --cov-report=xml } "
7
7
pytest ${PYTEST_ARGS} --mypy ./tests/
You can’t perform that action at this time.
0 commit comments