Skip to content

Commit

Permalink
fix(monitoring): make VPCSC env comparison case-insensitive (#9564)
Browse files Browse the repository at this point in the history
  • Loading branch information
steinwaywhw authored and tseaver committed Nov 6, 2019
1 parent 605cb42 commit 7a3a74d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion monitoring/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ def system(session):
session.install("-e", ".")

# Additional setup for VPCSC system tests
if os.environ.get("GOOGLE_CLOUD_TESTS_IN_VPCSC") != "true":
in_vpc = os.environ.get("GOOGLE_CLOUD_TESTS_IN_VPCSC", "false")
if in_vpc.lower() != "true":
# Unset PROJECT_ID, since VPCSC system tests expect this to be a project
# within the VPCSC perimeter.
env = {
Expand Down

0 comments on commit 7a3a74d

Please sign in to comment.