()
| 53 | |
| 54 | @contextlib.contextmanager |
| 55 | def bin_on_path(): |
| 56 | bindir = os.path.join(os.getcwd(), 'bin') |
| 57 | with envcontext((('PATH', (bindir, os.pathsep, Var('PATH'))),)): |
| 58 | yield |
| 59 | |
| 60 | |
| 61 | def test_find_executable_path_added(in_tmpdir): |
no test coverage detected