(target_dir)
| 140 | |
| 141 | @contextmanager |
| 142 | def chdir(target_dir): |
| 143 | saved_cwd = os.getcwd() |
| 144 | os.chdir(target_dir) |
| 145 | try: |
| 146 | yield |
| 147 | finally: |
| 148 | os.chdir(saved_cwd) |
| 149 | |
| 150 | |
| 151 | class BuildCommand(build, object): |
no outgoing calls
no test coverage detected