Try to find pythonw on Windows.
()
| 55 | |
| 56 | @dec.onlyif(has_pywin32, "This test requires win32api to run") |
| 57 | def test_find_cmd_pythonw(): |
| 58 | """Try to find pythonw on Windows.""" |
| 59 | path = find_cmd('pythonw') |
| 60 | assert path.lower().endswith('pythonw.exe'), path |
| 61 | |
| 62 | |
| 63 | @dec.onlyif(lambda : sys.platform != 'win32' or has_pywin32(), |
nothing calls this directly
no test coverage detected