Unverified Commit 09cd03d7 authored by Alex Pilon's avatar Alex Pilon
Browse files

Add env var related to google systems to ignored list

parent 18e827d6
...@@ -19,6 +19,7 @@ def to_be_ignored(env_var: str, value: str) -> bool: ...@@ -19,6 +19,7 @@ def to_be_ignored(env_var: str, value: str) -> bool:
"PATH", # this is for finding binaries, not libraries "PATH", # this is for finding binaries, not libraries
"LESSOPEN", # related to the `less` command "LESSOPEN", # related to the `less` command
"LESSCLOSE", "LESSCLOSE",
"GOOGLE_VM_CONFIG_LOCK_FILE", # Google Cloud stuff, contains root only paths
"_", # current Python interpreter "_", # current Python interpreter
} }
return env_var in ignorable return env_var in ignorable
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment