File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33codecov :
44 notify :
5- after_n_builds : 20 # The number of test matrix+lint jobs uploading coverage
5+ after_n_builds : 19 # The number of test matrix+lint jobs uploading coverage
66 wait_for_ci : false
77
88 require_ci_to_pass : false
@@ -40,9 +40,5 @@ coverage:
4040 paths :
4141 - tests/
4242 target : 98.2% # 100%
43- typing :
44- flags :
45- - MyPy
46- target : 77.5% # 100%
4743
4844...
Original file line number Diff line number Diff line change @@ -125,8 +125,6 @@ jobs:
125125
126126 lint :
127127 uses : ./.github/workflows/reusable-linters.yml
128- secrets :
129- codecov-token : ${{ secrets.CODECOV_TOKEN }}
130128
131129 build-wheels-for-tested-arches :
132130 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
44
55on :
66 workflow_call :
7- secrets :
8- codecov-token :
9- description : Mandatory token for uploading to Codecov
10- required : true
117
128env :
139 COLOR : >- # Supposedly, pytest or coveragepy use this
@@ -66,16 +62,16 @@ jobs:
6662 - name : Run linters
6763 run : |
6864 make lint
69- - name : Send coverage data to Codecov
70- uses : codecov/codecov -action@v6
65+ - name : Send coverage data to Coveralls
66+ uses : coverallsapp/github -action@v2
7167 with :
72- token : ${{ secrets.codecov-token }}
68+ debug : ${{ runner.debug == '1' && true || false }}
69+ fail-on-error : ${{ runner.debug == '1' && false || true }}
7370 files : >-
7471 .tox/.tmp/.mypy/python-3.11/cobertura.xml
75- flags : >-
76- CI-GHA,
77- MyPy
78- fail_ci_if_error : true
72+ flag-name : MyPy
73+ format : cobertura
74+ measure : ${{ runner.debug == '1' && true || false }}
7975 - name : Install spell checker
8076 run : |
8177 pip install -r requirements/doc-spelling.txt
Original file line number Diff line number Diff line change 1+ The type preciseness coverage report generated by `MyPy
2+ <https://mypy-lang.org> `__ is now uploaded to `Coveralls
3+ <https://coveralls.io/github/aio-libs/propcache> `__ and
4+ will not be included in the `Codecov views
5+ <https://app.codecov.io/gh/aio-libs/propcache> `__ going forward
6+ -- by :user: `aiolibsbot `.
You can’t perform that action at this time.
0 commit comments