(self)
| 194 | self.configuration_file_path = configuration_file_path |
| 195 | |
| 196 | def run(self): |
| 197 | # Reset docker environment. |
| 198 | os.system("rm " + self.configuration_file_path + "/" + self.file_path + |
| 199 | "/*.txt") |
| 200 | if os.path.exists(self.file_path + "/mid_files") == False: |
| 201 | os.system("mkdir " + self.configuration_file_path + "/" + |
| 202 | self.file_path) |
| 203 | os.system("mkdir " + self.configuration_file_path + "/" + |
| 204 | self.file_path + "/delay") |
| 205 | os.system("mkdir " + self.configuration_file_path + "/" + |
| 206 | self.file_path + "/mid_files") |
| 207 | sn_remote_cmd(self.remote_ssh, "mkdir ~/" + self.file_path) |
| 208 | sn_remote_cmd(self.remote_ssh, "mkdir ~/" + self.file_path + "/delay") |
| 209 | |
| 210 | |
| 211 | # A thread designed for initializing constellation nodes. |
nothing calls this directly
no test coverage detected