We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 605cb42 commit 7a3a74dCopy full SHA for 7a3a74d
monitoring/noxfile.py
@@ -122,7 +122,8 @@ def system(session):
122
session.install("-e", ".")
123
124
# Additional setup for VPCSC system tests
125
- if os.environ.get("GOOGLE_CLOUD_TESTS_IN_VPCSC") != "true":
+ in_vpc = os.environ.get("GOOGLE_CLOUD_TESTS_IN_VPCSC", "false")
126
+ if in_vpc.lower() != "true":
127
# Unset PROJECT_ID, since VPCSC system tests expect this to be a project
128
# within the VPCSC perimeter.
129
env = {
0 commit comments