Skip to content

Commit

Permalink
chore: fix INSTALL_LIBRARY_FROM_SOURCE in noxfile.py (#121)
Browse files Browse the repository at this point in the history
Source-Link: googleapis/synthtool@6252f2c
Post-Processor: gcr.io/repo-automation-bots/owlbot-python:latest@sha256:50e35228649c47b6ca82aa0be3ff9eb2afce51c82b66c4a03fe4afeb5ff6c0fc
  • Loading branch information
gcf-owl-bot[bot] committed Aug 11, 2021
1 parent c8b896f commit 6781a8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scheduler/snippets/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def get_pytest_env_vars() -> Dict[str, str]:

TESTED_VERSIONS = sorted([v for v in ALL_VERSIONS if v not in IGNORED_VERSIONS])

INSTALL_LIBRARY_FROM_SOURCE = bool(os.environ.get("INSTALL_LIBRARY_FROM_SOURCE", False))
INSTALL_LIBRARY_FROM_SOURCE = os.environ.get("INSTALL_LIBRARY_FROM_SOURCE", False) in ("True", "true")
#
# Style Checks
#
Expand Down

0 comments on commit 6781a8e

Please sign in to comment.