Show More
@@ -16,13 +16,12 b'' | |||||
16 | # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
|
16 | # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
17 |
|
17 | |||
18 | import socket |
|
18 | import socket | |
19 |
|
||||
20 | import pytest |
|
19 | import pytest | |
21 |
|
20 | |||
22 |
|
21 | |||
23 | def pytest_addoption(parser): |
|
22 | def pytest_addoption(parser): | |
24 | parser.addoption( |
|
23 | parser.addoption( | |
25 | '--repeat', type=int, default=100, |
|
24 | '--perf-repeat-vcs', type=int, default=100, | |
26 | help="Number of repetitions in performance tests.") |
|
25 | help="Number of repetitions in performance tests.") | |
27 |
|
26 | |||
28 |
|
27 | |||
@@ -34,7 +33,7 b' def repeat(request):' | |||||
34 | Slower calls may divide it by 10 or 100. It is chosen in a way so that the |
|
33 | Slower calls may divide it by 10 or 100. It is chosen in a way so that the | |
35 | tests are not too slow in our default test suite. |
|
34 | tests are not too slow in our default test suite. | |
36 | """ |
|
35 | """ | |
37 | return request.config.getoption('--repeat') |
|
36 | return request.config.getoption('--perf-repeat-vcs') | |
38 |
|
37 | |||
39 |
|
38 | |||
40 | @pytest.fixture(scope='session') |
|
39 | @pytest.fixture(scope='session') |
General Comments 0
You need to be logged in to leave comments.
Login now