diff --git a/pytest.ini b/pytest.ini index a23fbbc..81ef6f0 100644 --- a/pytest.ini +++ b/pytest.ini @@ -6,7 +6,7 @@ addopts = --verbose --doctest-modules --doctest-glob=tests/*.txt --benchmark-save-data --benchmark-autosave --benchmark-group-by=name - --benchmark-compare + --benchmark-compare=* --benchmark-columns=min,stddev # --hypothesis-show-statistics doctest_optionflags = IGNORE_EXCEPTION_DETAIL ELLIPSIS diff --git a/setup.py b/setup.py index c6494b7..41c2e4b 100644 --- a/setup.py +++ b/setup.py @@ -61,6 +61,6 @@ setup( tests_require=tests_require, extras_require=dict( test=tests_require, - dev=tests_require + ['pre-commit==0.7.6', 'tox==2.3.1'], + dev=tests_require + ['pre-commit==0.9.3', 'tox==2.5.0'], ), )