From d819c6e39c10182cf918955700dbae77d414f3cb Mon Sep 17 00:00:00 2001 From: Paul McCarthy Date: Sat, 24 Mar 2018 14:57:12 +0000 Subject: [PATCH] reduce default number of iterations for unit tests --- conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conftest.py b/conftest.py index 956ab30c..78cbdcd9 100644 --- a/conftest.py +++ b/conftest.py @@ -42,7 +42,7 @@ def pytest_addoption(parser): parser.addoption('--niters', type=int, action='store', - default=5000, + default=1000, help='Number of inputs for tests which ' 'use a random set of inputs')