(dir_path)
| 56 | |
| 57 | |
| 58 | def create_dir(dir_path): |
| 59 | if not os.path.exists(temp_folder): |
| 60 | os.makedirs(temp_folder) |
| 61 | |
| 62 | full_path = os.path.join(temp_folder, dir_path) |
| 63 | if not os.path.exists(full_path): |
| 64 | os.makedirs(full_path) |
| 65 | |
| 66 | return full_path |
| 67 | |
| 68 | |
| 69 | def setup(): |
nothing calls this directly
no outgoing calls
no test coverage detected