Skip to content

Commit d9d3bbd

Browse files
committed
fix system test
1 parent 302dcc2 commit d9d3bbd

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

system_tests/noxfile.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,8 @@ def compute_engine(session):
271271
session.install(*TEST_DEPENDENCIES_SYNC)
272272
# unset Application Default Credentials so
273273
# credentials are detected from environment
274-
del session.virtualenv.env["GOOGLE_APPLICATION_CREDENTIALS"]
274+
if "GOOGLE_APPLICATION_CREDENTIALS" in session.virtualenv.env:
275+
del session.virtualenv.env["GOOGLE_APPLICATION_CREDENTIALS"]
275276
session.install(LIBRARY_DIR)
276277
default(
277278
session,

system_tests/secrets.tar.enc

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)