()
| 175 | |
| 176 | |
| 177 | def test_rc_ignore(): |
| 178 | # type: () -> None |
| 179 | with named_temporary_file(mode="w") as pexrc: |
| 180 | pexrc.write("HELLO=FORTYTWO") |
| 181 | pexrc.flush() |
| 182 | v = Variables(rc=pexrc.name, environ={"PEX_IGNORE_RCFILES": "True"}) |
| 183 | assert "HELLO" not in v._environ |
| 184 | |
| 185 | |
| 186 | def test_pex_vars_defaults_stripped(): |
nothing calls this directly
no test coverage detected