(file_)
| 147 | |
| 148 | |
| 149 | def sn_get_param(file_): |
| 150 | f = open(file_) |
| 151 | ADJ = f.readlines() |
| 152 | for i in range(len(ADJ)): |
| 153 | ADJ[i] = ADJ[i].strip('\n') |
| 154 | ADJ = [x.split(',') for x in ADJ] |
| 155 | f.close() |
| 156 | return ADJ |
| 157 | |
| 158 | |
| 159 | def sn_init_remote_machine(host, username, password): |
no outgoing calls
no test coverage detected