Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spanner: remove extra 'grpc_gcp' system tests. #6049

Merged
merged 1 commit into from
Sep 22, 2018
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