(tempdir_factory, store)
| 131 | |
| 132 | @pytest.mark.xfail(sys.platform == 'win32', reason='ptys are posix-only') |
| 133 | def test_output_isatty(tempdir_factory, store): |
| 134 | _test_hook_repo( |
| 135 | tempdir_factory, store, 'stdout_stderr_repo', |
| 136 | 'tty-check', |
| 137 | [], |
| 138 | b'stdin: False\nstdout: True\nstderr: True\n', |
| 139 | color=True, |
| 140 | ) |
| 141 | |
| 142 | |
| 143 | def _norm_pwd(path): |
nothing calls this directly
no test coverage detected