Skip to content

Commit 6252f2c

Browse files
authored
chore: fix INSTALL_LIBRARY_FROM_SOURCE in noxfile.py (#1176)
Fixes #988
1 parent 5605f38 commit 6252f2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

synthtool/gcp/templates/python_samples/noxfile.py.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ IGNORED_VERSIONS = TEST_CONFIG['ignored_versions']
9696

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

99-
INSTALL_LIBRARY_FROM_SOURCE = bool(os.environ.get("INSTALL_LIBRARY_FROM_SOURCE", False))
99+
INSTALL_LIBRARY_FROM_SOURCE = os.environ.get("INSTALL_LIBRARY_FROM_SOURCE", False) in ("True", "true")
100100
#
101101
# Style Checks
102102
#

0 commit comments

Comments
 (0)