(options)
| 342 | |
| 343 | @contextmanager |
| 344 | def _configured_env(options): |
| 345 | # type: (Namespace) -> Iterator[None] |
| 346 | if options.rc_file or not ENV.PEX_IGNORE_RCFILES: |
| 347 | with ENV.patch(**Variables(rc=options.rc_file).copy()): |
| 348 | yield |
| 349 | else: |
| 350 | yield |
| 351 | |
| 352 | |
| 353 | @contextmanager |
no test coverage detected