File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 56
56
run : |
57
57
nox -s unit${{ matrix.option }}-${{ matrix.python }}
58
58
- name : Upload coverage results
59
- uses : actions/upload-artifact@v3
59
+ uses : actions/upload-artifact@v4
60
60
with :
61
- name : coverage-artifacts
61
+ name : coverage-artifact-${{ matrix.option }}-${{ matrix.python }}
62
62
path : .coverage${{ matrix.option }}-${{ matrix.python }}
63
63
64
64
report-coverage :
@@ -78,11 +78,11 @@ jobs:
78
78
python -m pip install --upgrade setuptools pip wheel
79
79
python -m pip install coverage
80
80
- name : Download coverage results
81
- uses : actions/download-artifact@v3
81
+ uses : actions/download-artifact@v4
82
82
with :
83
- name : coverage-artifacts
84
83
path : .coverage-results/
85
84
- name : Report coverage results
86
85
run : |
87
- coverage combine .coverage-results/.coverage*
86
+ find .coverage-results -type f -name '*.zip' -exec unzip {} \;
87
+ coverage combine .coverage-results/**/.coverage*
88
88
coverage report --show-missing --fail-under=100
Original file line number Diff line number Diff line change @@ -253,7 +253,9 @@ def mypy(session):
253
253
session .install (
254
254
"types-setuptools" ,
255
255
"types-requests" ,
256
- "types-protobuf" ,
256
+ # TODO(https://github.com/googleapis/python-api-core/issues/642):
257
+ # Use the latest version of types-protobuf.
258
+ "types-protobuf<5" ,
257
259
"types-mock" ,
258
260
"types-dataclasses" ,
259
261
)
You can’t perform that action at this time.
0 commit comments