MCPcopy Index your code
hub / github.com/aws/aws-cli / setUp

Method setUp

tests/utils/s3transfer/__init__.py:359–370  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

357
358class BaseSubmissionTaskTest(BaseTaskTest):
359 def setUp(self):
360 super().setUp()
361 self.config = TransferConfig()
362 self.osutil = OSUtils()
363 self.executor = BoundedExecutor(
364 1000,
365 1,
366 {
367 IN_MEMORY_UPLOAD_TAG: TaskSemaphore(10),
368 IN_MEMORY_DOWNLOAD_TAG: SlidingWindowSemaphore(10),
369 },
370 )
371
372 def tearDown(self):
373 super().tearDown()

Callers

nothing calls this directly

Calls 6

TransferConfigClass · 0.90
OSUtilsClass · 0.90
BoundedExecutorClass · 0.90
TaskSemaphoreClass · 0.90
setUpMethod · 0.45

Tested by

no test coverage detected