(tempdir_factory, store)
| 121 | |
| 122 | |
| 123 | def test_intermixed_stdout_stderr(tempdir_factory, store): |
| 124 | _test_hook_repo( |
| 125 | tempdir_factory, store, 'stdout_stderr_repo', |
| 126 | 'stdout-stderr', |
| 127 | [], |
| 128 | b'0\n1\n2\n3\n4\n5\n', |
| 129 | ) |
| 130 | |
| 131 | |
| 132 | @pytest.mark.xfail(sys.platform == 'win32', reason='ptys are posix-only') |
nothing calls this directly
no test coverage detected