diff options
author | drebs <drebs@riseup.net> | 2017-10-10 20:04:24 -0300 |
---|---|---|
committer | drebs <drebs@riseup.net> | 2017-10-10 20:04:24 -0300 |
commit | 5a6d04ca38736440e67b202a909b386fb0ba830d (patch) | |
tree | 170ff33ebc61c32c5e0efbbc49bea1ceda5d8090 /tests/benchmarks | |
parent | c005102b53f7d97d38a80c21db68386bbf7b895f (diff) |
[test] add docstring for blobs tests
Diffstat (limited to 'tests/benchmarks')
-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) |