File tree Expand file tree Collapse file tree 2 files changed +6
-35
lines changed Expand file tree Collapse file tree 2 files changed +6
-35
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ concurrency:
10
10
cancel-in-progress : true
11
11
12
12
env :
13
- PYTEST_ADDOPTS : ' -vv --cov-append '
13
+ PYTEST_ADDOPTS : ' -vv'
14
14
15
15
jobs :
16
16
lint :
79
79
which nvim
80
80
nvim --version
81
81
tox
82
-
83
- - if : matrix.target == 'tests'
84
- name : Run coverage report
85
- run : |
86
- pip install coverage
87
- coverage report -m
88
- coverage xml
89
-
90
- - if : matrix.target == 'tests'
91
- uses : codecov/codecov-action@v3
92
- with :
93
- file : coverage.xml
94
- verbose : true
95
-
96
- # TODO: tox, codecov steps from old travis workflow
97
- #
98
- # env: CI_TARGET=checkqa TOXENV=checkqa,docs
99
- # script:
100
- # - tox
101
- # after_script:
102
- # - if [ $CI_TARGET = tests ]; then
103
- # set -x;
104
- # pip install coverage;
105
- # coverage combine;
106
- # coverage report -m;
107
- # coverage xml;
108
- # bash <(curl --retry 5 --silent --fail https://codecov.io/bash) -f coverage.xml;
109
- # set +x;
110
- # fi
Original file line number Diff line number Diff line change 1
1
[tox]
2
2
envlist =
3
- py{310,311}-{ asyncio,pyuv}-cov,pypy-cov
3
+ py{310,311}-asyncio
4
4
checkqa
5
5
6
6
[gh-actions]
@@ -13,10 +13,10 @@ python =
13
13
extras = test
14
14
deps =
15
15
pytest-timeout
16
- cov: pytest-cov
17
- pyuv: pyuv
18
- setenv =
19
- cov: PYTEST_ADDOPTS =--cov =. {env:PYTEST_ADDOPTS:}
16
+ # cov: pytest-cov
17
+ # pyuv: pyuv
18
+ # setenv =
19
+ # cov: PYTEST_ADDOPTS=--cov=. {env:PYTEST_ADDOPTS:}
20
20
passenv = PYTEST_ADDOPTS
21
21
commands =
22
22
python -m pytest {posargs}
You can’t perform that action at this time.
0 commit comments