MCPcopy Create free account
hub / github.com/aws/aws-cli / setUp

Method setUp

tests/functional/botocore/__init__.py:56–63  ·  view source on GitHub ↗
(self, **environ)

Source from the content-addressed store, hash-verified

54
55class FunctionalSessionTest(BaseEnvVar):
56 def setUp(self, **environ):
57 super().setUp()
58 self.environ['AWS_ACCESS_KEY_ID'] = 'access_key'
59 self.environ['AWS_SECRET_ACCESS_KEY'] = 'secret_key'
60 self.environ['AWS_CONFIG_FILE'] = 'no-exist-foo'
61 self.environ.update(environ)
62 self.session = create_session()
63 self.session.config_filename = 'no-exist-foo'
64
65
66def setup_package():

Callers

nothing calls this directly

Calls 2

create_sessionFunction · 0.70
updateMethod · 0.45

Tested by

no test coverage detected