Skip to content

Commit

Permalink
test: need pyopenssl for mtls system test (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
arithmetic1728 authored Feb 12, 2021
1 parent ec3f40d commit 0e8a28c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/google-cloud-compute/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,10 @@ def system(session):
)
session.install("-e", ".")

# mTLS test needs pyopenssl
if os.environ.get("GOOGLE_API_USE_CLIENT_CERTIFICATE", "") == "true":
session.install("pyopenssl")

# Run py.test against the system tests.
if system_test_exists:
session.run("py.test", "--quiet", system_test_path, *session.posargs)
Expand Down

0 comments on commit 0e8a28c

Please sign in to comment.