Skip to content

Commit

Permalink
chore: fix INSTALL_LIBRARY_FROM_SOURCE in noxfile.py (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation authored Aug 10, 2021
1 parent 1a633f2 commit 3397e21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compute/compute/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 3397e21

Please sign in to comment.