diff options
Diffstat (limited to 'tests/benchmarks/test_blobs_upload_download.py')
-rw-r--r-- | tests/benchmarks/test_blobs_upload_download.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/benchmarks/test_blobs_upload_download.py b/tests/benchmarks/test_blobs_upload_download.py index 35fdc2c6..1ec524dc 100644 --- a/tests/benchmarks/test_blobs_upload_download.py +++ b/tests/benchmarks/test_blobs_upload_download.py @@ -71,6 +71,9 @@ def create_blobs_download(amount, size): @pytest.inlineCallbacks @pytest.mark.benchmark(group=group) def test(soledad_client, txbenchmark_with_setup): + """ + Download many blobs of the same size. + """ client = soledad_client() blob_payload = payload(size) @@ -136,6 +139,9 @@ def create_blobs_upload(amount, size): @pytest.inlineCallbacks @pytest.mark.benchmark(group=group) def test(soledad_client, txbenchmark_with_setup): + """ + Upload many blobs of the same size. + """ client = soledad_client() blob_payload = payload(size) |