Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 3 additions & 4 deletions asset/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,9 @@ def system(session):

# 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"
),
"PROJECT_ID": os.environ.get("PROJECT_ID"),
"GOOGLE_CLOUD_TESTS_VPCSC_OUTSIDE_PERIMETER_PROJECT": "secure-gcp-test-project-4",
"GOOGLE_CLOUD_TESTS_IN_VPCSC": "true",
}

# Run py.test against the system tests.
Expand Down
2 changes: 1 addition & 1 deletion asset/tests/system/test_vpcsc.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
PROJECT_OUTSIDE = os.environ.get(
"GOOGLE_CLOUD_TESTS_VPCSC_OUTSIDE_PERIMETER_PROJECT", None
)
IS_INSIDE_VPCSC = os.environ.get("GOOGLE_CLOUD_TESTS_IN_VPCSC", "false")
IS_INSIDE_VPCSC = os.environ.get("GOOGLE_CLOUD_TESTS_IN_VPCSC", "true")


class TestVPCServiceControl(object):
Expand Down