File tree Expand file tree Collapse file tree 3 files changed +10
-23
lines changed Expand file tree Collapse file tree 3 files changed +10
-23
lines changed Original file line number Diff line number Diff line change 2
2
3
3
codecov :
4
4
notify :
5
- after_n_builds : 2 # The number of test matrix+lint jobs uploading coverage
5
+ after_n_builds : 1 # The number of test matrix+lint jobs uploading coverage
6
6
wait_for_ci : false
7
7
8
8
require_ci_to_pass : false
@@ -21,9 +21,6 @@ coverage:
21
21
target : 95%
22
22
flags :
23
23
- pytest
24
- typing :
25
- flags :
26
- - MyPy
27
24
project :
28
25
lib :
29
26
flags :
@@ -37,10 +34,6 @@ coverage:
37
34
paths :
38
35
- tests/
39
36
target : 100%
40
- typing :
41
- flags :
42
- - MyPy
43
- target : 40%
44
37
45
38
github_checks :
46
39
annotations : false
Original file line number Diff line number Diff line change @@ -106,8 +106,6 @@ jobs:
106
106
107
107
lint :
108
108
uses : ./.github/workflows/reusable-linters.yml
109
- secrets :
110
- codecov-token : ${{ secrets.CODECOV_TOKEN }}
111
109
112
110
build-wheels-for-tested-arches :
113
111
name : >- # ${{ '' } is a hack to nest jobs under the same sidebar category
Original file line number Diff line number Diff line change @@ -4,10 +4,6 @@ name: Linters
4
4
5
5
on :
6
6
workflow_call :
7
- secrets :
8
- codecov-token :
9
- description : Mandatory token for uploading to Codecov
10
- required : true
11
7
12
8
env :
13
9
COLOR : >- # Supposedly, pytest or coveragepy use this
@@ -60,18 +56,18 @@ jobs:
60
56
- name : Run linters
61
57
run : |
62
58
make lint
63
- - name : Send coverage data to Codecov
64
- uses : codecov/codecov -action@v5
59
+ - name : Send coverage data to Coveralls
60
+ uses : coverallsapp/github -action@v2
65
61
with :
66
- token : ${{ secrets.codecov-token }}
62
+ debug : ${{ runner.debug == 1 && true || false }}
63
+ fail-on-error : ${{ runner.debug == 1 && false || true }}
67
64
files : >-
68
- .tox/.tmp/.mypy/python-3.13/cobertura.xml,
69
- .tox/.tmp/.mypy/python-3.11/cobertura.xml,
65
+ .tox/.tmp/.mypy/python-3.13/cobertura.xml
66
+ .tox/.tmp/.mypy/python-3.11/cobertura.xml
70
67
.tox/.tmp/.mypy/python-3.9/cobertura.xml
71
- flags : >-
72
- CI-GHA,
73
- MyPy
74
- fail_ci_if_error : true
68
+ flag-name : MyPy
69
+ format : cobertura
70
+ measure : ${{ runner.debug == 1 && true || false }}
75
71
- name : Install spell checker
76
72
run : |
77
73
pip install -r requirements/doc.txt
You can’t perform that action at this time.
0 commit comments