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

Drop separate testing for grpcio-gcp. #5927

Merged
merged 1 commit into from
Sep 11, 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
17 changes: 0 additions & 17 deletions spanner/nox.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,23 +70,6 @@ def unit(session, py):
default(session)


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

# Run unit tests against all supported versions of Python.
session.interpreter = 'python{}'.format(py)

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

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

default(session)


def system_common(session):
# Use pre-release gRPC for system tests.
session.install('--pre', 'grpcio')
Expand Down