Skip to content
This repository has been archived by the owner on Dec 31, 2023. It is now read-only.

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 committed Feb 12, 2021
1 parent 8e08497 commit 2122dbb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions noxfile.py
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 2122dbb

Please sign in to comment.