Skip to content

Commit

Permalink
chore: fix INSTALL_LIBRARY_FROM_SOURCE in noxfile.py (#1176)
Browse files Browse the repository at this point in the history
Fixes #988
  • Loading branch information
parthea committed Aug 9, 2021
1 parent 5605f38 commit 6252f2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synthtool/gcp/templates/python_samples/noxfile.py.j2
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ IGNORED_VERSIONS = TEST_CONFIG['ignored_versions']

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 6252f2c

Please sign in to comment.