Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Testing: Add an env var to pick the V8 binary (#6836)
Also we had a mix of os.environ.get and os.getenv. Prefer the former, as the default value does actual work, so it's a little more efficient to not run it unnecessarily. That is, os.getenv('X', work()) is less efficient than os.environ.get('X') or work().
- Loading branch information