Skip to content

Commit 92b7f71

Browse files
authored
Fix copy/paste typos in noxfile comments (#6831)
1 parent 8eee763 commit 92b7f71

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bigquery/noxfile.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ def system(session):
108108

109109
@nox.session(python=['2.7', '3.6'])
110110
def snippets(session):
111-
"""Run the system test suite."""
111+
"""Run the snippets test suite."""
112112

113-
# Sanity check: Only run system tests if the environment variable is set.
113+
# Sanity check: Only run snippets tests if the environment variable is set.
114114
if not os.environ.get('GOOGLE_APPLICATION_CREDENTIALS', ''):
115115
session.skip('Credentials must be set via environment variable.')
116116

@@ -122,7 +122,7 @@ def snippets(session):
122122
session.install('-e', os.path.join('..', 'test_utils'))
123123
session.install('-e', '.[pandas, pyarrow]')
124124

125-
# Run py.test against the system tests.
125+
# Run py.test against the snippets tests.
126126
session.run(
127127
'py.test', os.path.join('docs', 'snippets.py'), *session.posargs)
128128

@@ -176,4 +176,4 @@ def blacken(session):
176176
"google",
177177
"tests",
178178
"docs",
179-
)
179+
)

0 commit comments

Comments
 (0)