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
21 changes: 0 additions & 21 deletions spanner/nox.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,27 +103,6 @@ def system(session, py):
system_common(session)


@nox.session
@nox.parametrize('py', ['2.7', '3.6'])
def system_grpc_gcp(session, py):
"""Run the system test suite with grpcio-gcp installed."""

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

# Run the system tests against latest Python 2 and Python 3 only.
session.interpreter = 'python{}'.format(py)

# Set the virtualenv dirname.
session.virtualenv_dirname = 'sys-grpc-gcp-' + py

# Install grpcio-gcp
session.install('grpcio-gcp')

system_common(session)


@nox.session
def lint(session):
"""Run linters.
Expand Down