diff --git a/monitoring/noxfile.py b/monitoring/noxfile.py index eade89c4183b..4021dcbde201 100644 --- a/monitoring/noxfile.py +++ b/monitoring/noxfile.py @@ -122,18 +122,18 @@ def system(session): session.install("-e", ".") # Additional setup for VPCSC system tests - env = { - "PROJECT_ID": "secure-gcp-test-project-4", - "GOOGLE_CLOUD_TESTS_VPCSC_OUTSIDE_PERIMETER_PROJECT": os.environ.get( - "PROJECT_ID" - ), - } + # env = { + # "PROJECT_ID": "secure-gcp-test-project-4", + # "GOOGLE_CLOUD_TESTS_VPCSC_OUTSIDE_PERIMETER_PROJECT": os.environ.get( + # "PROJECT_ID" + # ), + # } # Run py.test against the system tests. if system_test_exists: - session.run("py.test", "--quiet", system_test_path, env=env, *session.posargs) + session.run("py.test", "--quiet", system_test_path, *session.posargs) if system_test_folder_exists: - session.run("py.test", "--quiet", system_test_folder_path, env=env, *session.posargs) + session.run("py.test", "--quiet", system_test_folder_path, *session.posargs) @nox.session(python="3.7")