File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ concurrency:
99 group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
1010 cancel-in-progress : true
1111
12+ permissions :
13+ contents : read
14+
1215jobs :
1316 test :
1417 runs-on : ${{ matrix.os }}
5861 - name : Test with tox
5962 env :
6063 FORCE_COLOR : 1
61- PYTEST_CI_ARGS : --cov-report=xml -- junitxml=test_artifacts/test_report.xml --color=yes
64+ PYTEST_CI_ARGS : --junitxml=test_artifacts/test_report.xml --color=yes
6265 run : tox --skip-missing-interpreters=true
6366
6467 - name : Upload coverage reports to Codecov
Original file line number Diff line number Diff line change 2626 pylint4: pylint>4,<5
2727commands =
2828 pip install --upgrade --editable .
29- pytest --cov --cov-append {env:PYTEST_CI_ARGS:} {tty:--color =yes} {posargs:tests}
29+ coverage run pytest {env:PYTEST_CI_ARGS:} {tty:--color =yes} {posargs:tests}
You can’t perform that action at this time.
0 commit comments