summaryrefslogtreecommitdiff
path: root/testing/tests/benchmarks/test_sync.py
diff options
context:
space:
mode:
authordrebs <drebs@leap.se>2017-07-12 15:05:16 -0300
committerdrebs <drebs@leap.se>2017-07-12 15:11:35 -0300
commitdde0184b9129e0e6067198dcde9a35f20d83af2c (patch)
tree0e8ac8e2c389d5a539e7a83cfd16aa9621d94695 /testing/tests/benchmarks/test_sync.py
parent84a80882489596f5c3ac3275f12f46aa4fc002ed (diff)
[doc] mark which sync benchmark scenarios are actually run
Diffstat (limited to 'testing/tests/benchmarks/test_sync.py')
-rw-r--r--testing/tests/benchmarks/test_sync.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/testing/tests/benchmarks/test_sync.py b/testing/tests/benchmarks/test_sync.py
index fcfab998..04566678 100644
--- a/testing/tests/benchmarks/test_sync.py
+++ b/testing/tests/benchmarks/test_sync.py
@@ -30,6 +30,8 @@ def create_upload(uploads, size):
return test
+# ATTENTION: update the documentation in ../docs/benchmarks.rst if you change
+# the number of docs or the doc sizes for the tests below.
test_upload_20_500k = create_upload(20, 500 * 1000)
test_upload_100_100k = create_upload(100, 100 * 1000)
test_upload_1000_10k = create_upload(1000, 10 * 1000)
@@ -63,6 +65,8 @@ def create_download(downloads, size):
return test
+# ATTENTION: update the documentation in ../docs/benchmarks.rst if you change
+# the number of docs or the doc sizes for the tests below.
test_download_20_500k = create_download(20, 500 * 1000)
test_download_100_100k = create_download(100, 100 * 1000)
test_download_1000_10k = create_download(1000, 10 * 1000)