()
| 28 | |
| 29 | |
| 30 | def test_CalledProcessError_str_nooutput(): |
| 31 | error = CalledProcessError(1, ('exe',), b'', b'') |
| 32 | assert str(error) == ( |
| 33 | "command: ('exe',)\n" |
| 34 | 'return code: 1\n' |
| 35 | 'stdout: (none)\n' |
| 36 | 'stderr: (none)' |
| 37 | ) |
| 38 | |
| 39 | |
| 40 | def test_clean_on_failure_noop(in_tmpdir): |
nothing calls this directly
no test coverage detected