File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
translation/samples/snippets Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ def get_pytest_env_vars() -> Dict[str, str]:
9696
9797TESTED_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#
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ def get_pytest_env_vars() -> Dict[str, str]:
9696
9797TESTED_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#
You can’t perform that action at this time.
0 commit comments