Skip to content

Commit 0c9cc33

Browse files
authored
Apply suggestions from code review
1 parent 675e491 commit 0c9cc33

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/unittest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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:

noxfile.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff 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",

0 commit comments

Comments
 (0)