Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions bigquery/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ def system(session):

@nox.session(python=['2.7', '3.6'])
def snippets(session):
"""Run the system test suite."""
"""Run the snippets test suite."""

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

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

# Run py.test against the system tests.
# Run py.test against the snippets tests.
session.run(
'py.test', os.path.join('docs', 'snippets.py'), *session.posargs)

Expand Down Expand Up @@ -176,4 +176,4 @@ def blacken(session):
"google",
"tests",
"docs",
)
)