File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -37,10 +37,12 @@ jobs:
3737 - uses : actions/checkout@v3
3838 - run : poetry install --only=main --only=test
3939 - run : poetry run pytest
40+ if : matrix.python-version != '3.10'
4041 - run : poetry run coverage run
41- - run : |
42- pipx install coveralls
43- pipx inject coveralls coverage[toml]
44- - run : coveralls --service=github
45- env :
46- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
42+ if : matrix.python-version == '3.10'
43+ - run : poetry run coverage xml
44+ if : matrix.python-version == '3.10'
45+ - uses : coverallsapp/github-action@v2
46+ if : matrix.python-version == '3.10'
47+ with :
48+ file : coverage.xml
Original file line number Diff line number Diff line change @@ -65,4 +65,5 @@ demo/_*.py
6565
6666# Coveage
6767.coverage
68+ coverage. *
6869htmlcov /
You can’t perform that action at this time.
0 commit comments