From 053e935af4b1bb918e603952a0bbbd3d1f5563de Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Fri, 21 Sep 2018 20:40:57 -0400 Subject: [PATCH] Remove extra 'grpc_gcp' system tests. (#6049) #5904 made 'grpcio-gcp' an unconditional dependency. --- spanner/nox.py | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/spanner/nox.py b/spanner/nox.py index 02c61c9ba2f0..7c307b078b05 100644 --- a/spanner/nox.py +++ b/spanner/nox.py @@ -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.