File tree 2 files changed +2
-2
lines changed
translation/samples/snippets
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]:
96
96
97
97
TESTED_VERSIONS = sorted ([v for v in ALL_VERSIONS if v not in IGNORED_VERSIONS ])
98
98
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" )
100
100
#
101
101
# Style Checks
102
102
#
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ def get_pytest_env_vars() -> Dict[str, str]:
96
96
97
97
TESTED_VERSIONS = sorted ([v for v in ALL_VERSIONS if v not in IGNORED_VERSIONS ])
98
98
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" )
100
100
#
101
101
# Style Checks
102
102
#
You can’t perform that action at this time.
0 commit comments