(self)
| 174 | INJECT_DUMMY_CREDS = False |
| 175 | |
| 176 | def setUp(self): |
| 177 | self.driver = ClientDriver() |
| 178 | env = os.environ.copy() |
| 179 | if self.INJECT_DUMMY_CREDS: |
| 180 | env['AWS_ACCESS_KEY_ID'] = 'foo' |
| 181 | env['AWS_SECRET_ACCESS_KEY'] = 'bar' |
| 182 | self.driver.start(env=env) |
| 183 | |
| 184 | def cmd(self, *args): |
| 185 | self.driver.cmd(*args) |
nothing calls this directly
no test coverage detected