Try to find pythonw on Windows.
()
| 52 | |
| 53 | @dec.skip_if_not_win32 |
| 54 | def test_find_cmd_pythonw(): |
| 55 | """Try to find pythonw on Windows.""" |
| 56 | path = find_cmd("pythonw") |
| 57 | assert path.lower().endswith("pythonw.exe"), path |
| 58 | |
| 59 | |
| 60 | def test_find_cmd_fail(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…