()
| 10 | |
| 11 | @contextlib.contextmanager |
| 12 | def clear_env(): |
| 13 | with EnvironmentVarGuard() as mock_env: |
| 14 | mock_env.unset("FORCE_COLOR", "NO_COLOR", "PYTHON_COLORS", "TERM") |
| 15 | yield mock_env |
| 16 | |
| 17 | |
| 18 | def supports_virtual_terminal(): |
no test coverage detected
searching dependent graphs…