File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed
Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -52,14 +52,14 @@ jobs:
5252 python -m pip install nox
5353 - name : Run unit_noextras tests
5454 env :
55- COVERAGE_FILE : .coverage-${{ matrix.python }}
55+ COVERAGE_FILE : .coverage-unit-noextras- ${{ matrix.python }}
5656 run : |
5757 nox -s unit_noextras-${{ matrix.python }}
5858 - name : Upload coverage results
5959 uses : actions/upload-artifact@v4
6060 with :
61- name : coverage-artifact-${{ matrix.python }}
62- path : .coverage-${{ matrix.python }}
61+ name : coverage-artifact-unit-noextras- ${{ matrix.python }}
62+ path : .coverage-unit-noextras- ${{ matrix.python }}
6363 include-hidden-files : true
6464
6565 cover :
Original file line number Diff line number Diff line change @@ -128,9 +128,8 @@ def default(session, install_extras=True):
128128 # Run py.test against the unit tests.
129129 session .run (
130130 "py.test" ,
131- # "-n=8",
132- # "--quiet",
133- "-vv" ,
131+ "-n=8" ,
132+ "--quiet" ,
134133 "-W default::PendingDeprecationWarning" ,
135134 "--cov=google/cloud/bigquery" ,
136135 "--cov=tests/unit" ,
You can’t perform that action at this time.
0 commit comments