(self)
| 27 | |
| 28 | class TestCredentialPrecedence(BaseEnvVar): |
| 29 | def setUp(self): |
| 30 | super().setUp() |
| 31 | |
| 32 | # Set the config file to something that doesn't exist so |
| 33 | # that we don't accidentally load a config. |
| 34 | os.environ['AWS_CONFIG_FILE'] = '~/.aws/config-missing' |
| 35 | |
| 36 | def create_session(self, *args, **kwargs): |
| 37 | """ |